Fixed a test-case issue within the dirty-flag module.

This commit is contained in:
Toxic Dreamz 2020-08-20 01:21:03 +04:00
parent 6b5b2ac1e8
commit 885c8a6765

View File

@ -36,7 +36,7 @@ class DirtyFlagTest {
void testIsDirty() { void testIsDirty() {
var df = new DataFetcher(); var df = new DataFetcher();
var countries = df.fetch(); var countries = df.fetch();
Assertions.assertTrue(countries.isEmpty()); Assertions.assertFalse(countries.isEmpty());
} }
@Test @Test