Skip to content

Commit

Permalink
precommit
Browse files Browse the repository at this point in the history
  • Loading branch information
dsmiley committed Mar 2, 2025
1 parent 021f0c0 commit 4491065
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public void testEquals() {
assertEquals(map2, map3); // but still equals despite different order
assertEquals(map2.hashCode(), map3.hashCode());

var nl2 = new NamedList<>(map2);
var nl2 = new NamedList<Object>(map2);
assertNotEquals(map2, nl2);
assertNotEquals(nl2, map2);
}
Expand Down

0 comments on commit 4491065

Please sign in to comment.