Skip to content
This repository was archived by the owner on Sep 3, 2020. It is now read-only.

Commit 34dd001

Browse files
committed
Fix test in ReusingPrinterTest
It should be tested that the `override` keyword is added - which is not what the test is doing.
1 parent ceef505 commit 34dd001

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

org.scala-refactoring.library/src/test/scala/scala/tools/refactoring/tests/sourcegen/ReusingPrinterTest.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ class ReusingPrinterTest extends TestHelper with SilentTracing {
8989
def meth: Int
9090
}
9191
trait TT extends T {
92-
override def meth = 0
92+
def meth = 0
9393
}
9494
""" becomes """
9595
trait T {

0 commit comments

Comments
 (0)