From 441e975323ca48bec2ddc378d654430e6f382a80 Mon Sep 17 00:00:00 2001 From: Stepan Koltsov Date: Thu, 14 Jun 2012 14:06:17 +0400 Subject: [PATCH] fix order of parameters in assert in ReplInterpreterTest --- compiler/tests/org/jetbrains/jet/repl/ReplInterpreterTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/tests/org/jetbrains/jet/repl/ReplInterpreterTest.java b/compiler/tests/org/jetbrains/jet/repl/ReplInterpreterTest.java index 0a4455fb1cf..77d40b8e0e2 100644 --- a/compiler/tests/org/jetbrains/jet/repl/ReplInterpreterTest.java +++ b/compiler/tests/org/jetbrains/jet/repl/ReplInterpreterTest.java @@ -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); } }