Skip to content

Commit

Permalink
Transition to JUnit 5, re #68
Browse files Browse the repository at this point in the history
  • Loading branch information
safris committed Jan 16, 2024
1 parent 82dbcdb commit 968dc75
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/java/org/libj/lang/ResourcesTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public void testListLibJRunner() throws IOException {
counter.getAndIncrement();
return true;
});
assertEquals(30, counter.get());
assertEquals(46, counter.get());
}

@Test
Expand All @@ -92,6 +92,6 @@ public void testWalkLibJRunner() throws IOException {
counter.getAndIncrement();
return true;
});
assertEquals(354, counter.get());
assertEquals(1385, counter.get());
}
}

0 comments on commit 968dc75

Please sign in to comment.