Commit 95ab28ab authored by Archie Shahidullah's avatar Archie Shahidullah :expressionless:
Browse files

Update CollectionTests.java

parent f8d205c8
1 merge request!1Review Tests for Project 3
Pipeline #36408 canceled with stage
Showing with 1 addition and 1 deletion
+1 -1
......@@ -74,7 +74,7 @@ public interface CollectionTests {
ICollection<Object> impl = newCollection();
for (int i = 0; i < 10; i ++) {
impl.add("a");
assertEquals(impl.size(), 1, "collection should have 1 element");
assertEquals(1, impl.size(), "collection should have 1 element");
impl.clear();
assertTrue(impl.isEmpty());
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment