summaryrefslogtreecommitdiff
path: root/test/junit
diff options
context:
space:
mode:
authorAdriaan Moors <adriaan@lightbend.com>2017-02-21 11:57:05 -0800
committerGitHub <noreply@github.com>2017-02-21 11:57:05 -0800
commitd60f6e340766f8876adb21092081bf264c64597f (patch)
treec465fa15a9e1d6207c45107b318818aa84b6ea50 /test/junit
parenta8c4a54d18c5560417d8c41db8b23a10fe8d616d (diff)
downloadscala-d60f6e340766f8876adb21092081bf264c64597f.tar.gz
scala-d60f6e340766f8876adb21092081bf264c64597f.tar.bz2
scala-d60f6e340766f8876adb21092081bf264c64597f.zip
Revert "SI-10133 Require escaped single quote char lit"
Diffstat (limited to 'test/junit')
-rw-r--r--test/junit/scala/tools/nsc/interpreter/ScriptedTest.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/junit/scala/tools/nsc/interpreter/ScriptedTest.scala b/test/junit/scala/tools/nsc/interpreter/ScriptedTest.scala
index e9f1336623..01d17110d6 100644
--- a/test/junit/scala/tools/nsc/interpreter/ScriptedTest.scala
+++ b/test/junit/scala/tools/nsc/interpreter/ScriptedTest.scala
@@ -96,7 +96,7 @@ class ScriptedTest {
}
@Test def `on compile error`(): Unit = {
val engine = scripted
- val err = "not found: value foo in def f = foo at line number 11 at column number 9"
+ val err = "not found: value foo in def f = foo at line number 11 at column number 16"
assertThrows[ScriptException](engine.compile("def f = foo"), _ == err)
}
}