Skip to content

Commit

Permalink
Merge branch 'export-work'
Browse files Browse the repository at this point in the history
  • Loading branch information
anidotnet committed Oct 1, 2023
2 parents 6721432 + a15033f commit 6a24753
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ public void testRepoPerformanceWithIndex() {
assertNotNull(item);
repo.insert(item);
}
repo.remove(Filter.ALL);
assertEquals(repo.size(), 10000);
repo.drop();

// actual calculation
Expand All @@ -157,6 +157,7 @@ public void testRepoPerformanceWithIndex() {
}

repo.remove(Filter.ALL);
assertEquals(repo.size(), 0);
}

@Test
Expand All @@ -168,7 +169,6 @@ public void testRepoPerformanceWithoutIndex() {
assertNotNull(item);
repo.insert(item);
}
repo.remove(Filter.ALL);
repo.drop();

// actual calculation
Expand All @@ -178,6 +178,7 @@ public void testRepoPerformanceWithoutIndex() {
}

repo.remove(Filter.ALL);
assertEquals(repo.size(), 0);
}

private List<TestDto> createTestSet() {
Expand Down

0 comments on commit 6a24753

Please sign in to comment.