summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2014-05-08 22:57:25 +0200
committerJason Zaugg <jzaugg@gmail.com>2014-05-08 22:57:25 +0200
commit972244d7e3de18c833b179277912c737301b5437 (patch)
treedf6129f4f0844621876716fa6ac63132abbdd09c /test
parenta469cabc3eaf18a8a41cbcb1de4da6a7d459c861 (diff)
parent30610d53489478663a63a89ca09189e622024dc5 (diff)
downloadscala-972244d7e3de18c833b179277912c737301b5437.tar.gz
scala-972244d7e3de18c833b179277912c737301b5437.tar.bz2
scala-972244d7e3de18c833b179277912c737301b5437.zip
Merge pull request #3721 from lrytz/t7852
SI-7852 for GenBCode
Diffstat (limited to 'test')
-rw-r--r--test/files/run/t7852.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/t7852.scala b/test/files/run/t7852.scala
index c93db718fd..1679067510 100644
--- a/test/files/run/t7852.scala
+++ b/test/files/run/t7852.scala
@@ -12,7 +12,7 @@ object Test extends BytecodeTest {
val classNode = loadClassNode("Lean")
val methodNode = getMethod(classNode, methodName)
val got = countNullChecks(methodNode.instructions)
- assert(got == expected, s"expected $expected but got $got comparisons")
+ assert(got == expected, s"$methodName: expected $expected but got $got comparisons")
}
test("string", expected = 0)
test("module", expected = 0)