Github user solomax commented on a diff in the pull request:
https://github.com/apache/wicket/pull/287#discussion_r206493340
--- Diff:
wicket-util/src/test/java/org/apache/wicket/util/collections/IntHashMapTest.java
---
@@ -48,9 +46,9 @@ public void serialize() throws IOException,
ClassNotFoundException
ByteArrayInputStream bais = new
ByteArrayInputStream(serialized);
ObjectInputStream ois = new ObjectInputStream(bais);
IntHashMap<String> deserialized = (IntHashMap<String>)
ois.readObject();
- assertThat(deserialized, is(notNullValue()));
- assertThat(deserialized.get(1), is(equalTo("one")));
- assertThat(deserialized.get(2), is(equalTo("two")));
+ assertNotNull(deserialized);
+ assertEquals(deserialized.get(1), "one");
--- End diff --
Is this correct parameter order?
---