fix order of parameters in assert in ReplInterpreterTest

This commit is contained in:
Stepan Koltsov
2012-06-14 14:06:17 +04:00
parent a7aff72a4d
commit 441e975323
@@ -63,7 +63,7 @@ public class ReplInterpreterTest {
Object actual = repl.eval(code).getValue();
String actualString = actual != null ? actual.toString() : "null";
Assert.assertEquals("after evaluation of: " + code, actualString, expected);
Assert.assertEquals("after evaluation of: " + code, expected, actualString);
}
}