diff --git a/lost-and-found-kata/src/test/java/org/eclipse/collections/lostandfoundkata/primitive/mutable/MutableIntBagTest.java b/lost-and-found-kata/src/test/java/org/eclipse/collections/lostandfoundkata/primitive/mutable/MutableIntBagTest.java
index f6fc437e..deef92e4 100644
--- a/lost-and-found-kata/src/test/java/org/eclipse/collections/lostandfoundkata/primitive/mutable/MutableIntBagTest.java
+++ b/lost-and-found-kata/src/test/java/org/eclipse/collections/lostandfoundkata/primitive/mutable/MutableIntBagTest.java
@@ -38,6 +38,8 @@
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
+import static org.junit.jupiter.api.Assertions.assertEquals;
+
/**
* {@link org.eclipse.collections.api.factory.bag.primitive.MutableIntBagFactory#with(int...)}
* @see IntBags
@@ -346,11 +348,11 @@ public void summaryStatistics()
public void occurrencesOf()
{
// Find the occurrencesOf 1 in this.bag
- Assert.assertEquals(1, this.bag.occurrencesOf(0));
+ assertEquals(1, this.bag.occurrencesOf(0));
// Find the occurrencesOf 2 in this.bag
- Assert.assertEquals(2, this.bag.occurrencesOf(0));
+ assertEquals(2, this.bag.occurrencesOf(0));
// Find the occurrencesOf 3 in this.bag
- Assert.assertEquals(3, this.bag.occurrencesOf(0));
+ assertEquals(3, this.bag.occurrencesOf(0));
}
@Test