summaryrefslogtreecommitdiff
path: root/test/files/presentation/callcc-interpreter/Runner.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/presentation/callcc-interpreter/Runner.scala')
-rw-r--r--test/files/presentation/callcc-interpreter/Runner.scala5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/files/presentation/callcc-interpreter/Runner.scala b/test/files/presentation/callcc-interpreter/Runner.scala
index 1ef3cf9025..a5698be5c2 100644
--- a/test/files/presentation/callcc-interpreter/Runner.scala
+++ b/test/files/presentation/callcc-interpreter/Runner.scala
@@ -1,3 +1,6 @@
import scala.tools.nsc.interactive.tests._
-object Test extends InteractiveTest \ No newline at end of file
+object Test extends InteractiveTest {
+ // Normalize ordering of LUB
+ override def normalize(s: String) = s.replace("Serializable with Product", "Product with Serializable")
+}