Skip to content

Commit

Permalink
QA issue
Browse files Browse the repository at this point in the history
  • Loading branch information
d-bernat committed Jan 4, 2024
1 parent 2a8f7e0 commit 6b13a7d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,14 +53,14 @@
import org.mockito.junit.jupiter.MockitoExtension;

@ExtendWith(MockitoExtension.class)
public class OutlierQueryParserTest {
class OutlierQueryParserTest {
@Mock private IdentifiableObjectManager idObjectManager;
@Mock private DimensionalObjectProducer dimensionalObjectProducer;
@Mock private CurrentUserService currentUserService;
private OutlierQueryParser subject;

@BeforeEach
public void setup() {
void setup() {
DataSet dataSet = createDataSet('A');
when(idObjectManager.getByUid(eq(DataSet.class), anyCollection())).thenReturn(List.of(dataSet));

Expand Down

0 comments on commit 6b13a7d

Please sign in to comment.