We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2811429 commit e650c86Copy full SHA for e650c86
tests/run/junitForwarders/C_1.scala
@@ -17,7 +17,7 @@ object Test extends App {
17
assert(s == e, s"found: $s\nexpected: $e")
18
}
19
check(classOf[C], "foo - @org.junit.Test()")
20
- // TODO scala-dev#213: should `foo$` really carry the @Test annotation?
21
- check(classOf[T], "$init$ - ;foo - @org.junit.Test()")
22
- check(classOf[U], "bar - @org.junit.Test()")
+ // scala/scala-dev#213, scala/scala#5570: `foo$` should not have the @Test annotation
+ check(classOf[T], "$init$ - ;$init$ - ;foo - @org.junit.Test();foo$ - ")
+ check(classOf[U], "bar - @org.junit.Test();bar$ - ")
23
0 commit comments