Skip to content

Commit

Permalink
Revert.
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed May 25, 2021
1 parent 8668397 commit 1682277
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -356,9 +356,9 @@ public void testObjectArrayEqual() {
@Test
public void testObjectsNotSameButEqual() {
final TypeTestClass left = new TypeTestClass();
left.objectField = Integer.valueOf(1);
left.objectField = new Integer(1);
final TypeTestClass right = new TypeTestClass();
right.objectField = Integer.valueOf(1);
right.objectField = new Integer(1);
assertNotSame(left.objectField, right.objectField);
assertEquals(left.objectField, right.objectField);

Expand Down

0 comments on commit 1682277

Please sign in to comment.