fix order of parameters in assert in ReplInterpreterTest
This commit is contained in:
@@ -63,7 +63,7 @@ public class ReplInterpreterTest {
|
|||||||
Object actual = repl.eval(code).getValue();
|
Object actual = repl.eval(code).getValue();
|
||||||
String actualString = actual != null ? actual.toString() : "null";
|
String actualString = actual != null ? actual.toString() : "null";
|
||||||
|
|
||||||
Assert.assertEquals("after evaluation of: " + code, actualString, expected);
|
Assert.assertEquals("after evaluation of: " + code, expected, actualString);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user