Skip to content

Commit

Permalink
Small tweaks to fix failing scala3 tests
Browse files Browse the repository at this point in the history
  • Loading branch information
masonedmison authored and tgodzik committed Sep 20, 2024
1 parent b20a062 commit 03af420
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions tests/cross/src/test/scala/tests/pc/CompletionSnippetSuite.scala
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,6 @@ class CompletionSnippetSuite extends BaseCompletionSuite {
|ArrayDequeOps[$0]
|ArrayDeque
|ArrayDeque
|ArrayDequeOps
|""".stripMargin
)
)
Expand Down Expand Up @@ -472,11 +471,16 @@ class CompletionSnippetSuite extends BaseCompletionSuite {
|WindowEvent - java.awt.event
|""".stripMargin,
compat = Map(
">=2.13.0" -> """|Widget - example
|Window - java.awt
|WindowPeer - java.awt.peer
|WithFilter - scala.collection
|""".stripMargin
"2.13" -> """|Widget - example
|Window - java.awt
|WindowPeer - java.awt.peer
|WithFilter - scala.collection
|""".stripMargin,
"3" -> """|Widget - example
|Window - java.awt
|WindowPeer - java.awt.peer
|WithFilter($0) - [A](p: A => Boolean, xs: Array[A]): WithFilter[A]
|""".stripMargin
),
includeDetail = true,
topLines = Some(4)
Expand Down

0 comments on commit 03af420

Please sign in to comment.