fix test
This commit is contained in:
parent
b0209fdaac
commit
6c6b959cb5
|
@ -52,6 +52,7 @@ import static org.hamcrest.Matchers.containsString;
|
||||||
import static org.hamcrest.Matchers.notNullValue;
|
import static org.hamcrest.Matchers.notNullValue;
|
||||||
import static org.hamcrest.Matchers.nullValue;
|
import static org.hamcrest.Matchers.nullValue;
|
||||||
import static org.junit.jupiter.api.Assertions.assertEquals;
|
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||||
|
import static org.junit.jupiter.api.Assertions.assertFalse;
|
||||||
import static org.junit.jupiter.api.Assertions.assertTrue;
|
import static org.junit.jupiter.api.Assertions.assertTrue;
|
||||||
import static org.mockito.ArgumentMatchers.any;
|
import static org.mockito.ArgumentMatchers.any;
|
||||||
import static org.mockito.ArgumentMatchers.isNull;
|
import static org.mockito.ArgumentMatchers.isNull;
|
||||||
|
@ -333,6 +334,6 @@ public class BulkDataExportProviderTest {
|
||||||
//TODO GGG eventually, we will support filters in group exports
|
//TODO GGG eventually, we will support filters in group exports
|
||||||
assertThat(options.getFilters(), nullValue());
|
assertThat(options.getFilters(), nullValue());
|
||||||
assertEquals(GROUP_ID, options.getGroupId().getValue());
|
assertEquals(GROUP_ID, options.getGroupId().getValue());
|
||||||
assertTrue(options.isMdm());
|
assertFalse(options.isMdm());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue