summaryrefslogtreecommitdiff
path: root/test/files
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2013-06-09 12:12:53 -0700
committerJason Zaugg <jzaugg@gmail.com>2013-06-09 12:12:53 -0700
commit3597a402a12eecd1c761eb7c9881f2c86024a1f1 (patch)
treec3b2c366bbac44b663535dd9d9297395f984446a /test/files
parent20f8eacca4f4b0bbc2c5f9045a87f8b003ba8876 (diff)
parent1d9abd2dc773eb39faa150801327e043768a525f (diff)
downloadscala-3597a402a12eecd1c761eb7c9881f2c86024a1f1.tar.gz
scala-3597a402a12eecd1c761eb7c9881f2c86024a1f1.tar.bz2
scala-3597a402a12eecd1c761eb7c9881f2c86024a1f1.zip
Merge pull request #2642 from soc/SI-7564
SI-7564 Fix detection of reflective calls on Avian
Diffstat (limited to 'test/files')
-rw-r--r--test/files/run/t3425b/Base_1.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/t3425b/Base_1.scala b/test/files/run/t3425b/Base_1.scala
index 02e108b320..5a660a89b2 100644
--- a/test/files/run/t3425b/Base_1.scala
+++ b/test/files/run/t3425b/Base_1.scala
@@ -9,7 +9,7 @@ class ABC extends A with B with C {
private def reflected = (
Thread.currentThread.getStackTrace
takeWhile (_.getMethodName != "main")
- exists (_.toString contains "java.lang.reflect.")
+ exists (_.toString contains "sun.reflect.")
)
lazy val y: PQ = new PQ(reflected)
}