Skip to content

Commit 5405a90

Browse files
committed
correct unit test assert ordering
1 parent 9d24f72 commit 5405a90

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

imagetool/src/test/java/com/oracle/weblogic/imagetool/aru/VersionTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ void equalObjects() {
6868
assertEquals(a, b);
6969
assertEquals(b, a);
7070
assertEquals(a, a);
71-
assertNotEquals(a, null);
71+
assertNotEquals(null, a);
7272
}
7373

7474
@Test

0 commit comments

Comments
 (0)