Skip to content

Commit 471c3db

Browse files
tgodzikdos65
authored andcommitted
chore: Update tests to work with newest nightlies
1 parent e716a55 commit 471c3db

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

tests/cross/src/test/scala/tests/pc/CompletionKeywordSuite.scala

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,9 @@ class CompletionKeywordSuite extends BaseCompletionSuite {
379379
| val x: Map[Int, new@@]
380380
|}
381381
""".stripMargin,
382-
""
382+
"",
383+
// to avoid newMain annotation
384+
filter = str => !str.contains("newMain")
383385
)
384386

385387
check(
@@ -393,7 +395,9 @@ class CompletionKeywordSuite extends BaseCompletionSuite {
393395
| }
394396
|}
395397
""".stripMargin,
396-
""
398+
"",
399+
// to avoid newMain annotation
400+
filter = str => !str.contains("newMain")
397401
)
398402

399403
check(

0 commit comments

Comments
 (0)