Skip to content

Commit 17f84c5

Browse files
committed
fix expected/actual order in a test
1 parent 781866b commit 17f84c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

binary-compat/test/src/test/scala/BinaryCompaTest.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ class BinaryCompaTest {
2323
Config.setup("foo", Array(oldClasspath, newClasspath))
2424
val mima = new MiMaLib(Config.baseClassPath)
2525
val allProblems = mima.collectProblems(oldClasspath, newClasspath)
26-
Assert.assertEquals(allProblems, Nil)
26+
Assert.assertEquals(Nil, allProblems)
2727
}
2828
}

0 commit comments

Comments
 (0)