Skip to content

Commit

Permalink
Merge pull request #363 from jesslenn/fix/mutableIntBagTestAssertions
Browse files Browse the repository at this point in the history
FIX: replace assert with assertions; MutableIntBagTest
  • Loading branch information
Sirisha Pratha authored Oct 4, 2024
2 parents d434413 + 26eea7f commit 23d20b2
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -304,9 +304,9 @@ public void summaryStatistics()
@Tag("SOLUTION")
public void occurrencesOf()
{
Assert.assertEquals(1, this.bag.occurrencesOf(1));
Assert.assertEquals(2, this.bag.occurrencesOf(2));
Assert.assertEquals(3, this.bag.occurrencesOf(3));
Assertions.assertEquals(1, this.bag.occurrencesOf(1));
Assertions.assertEquals(2, this.bag.occurrencesOf(2));
Assertions.assertEquals(3, this.bag.occurrencesOf(3));
}

public void topOccurrences()
Expand Down

0 comments on commit 23d20b2

Please sign in to comment.