Skip to content

Commit

Permalink
Add compat for scala3 for coursier shadowing test
Browse files Browse the repository at this point in the history
  • Loading branch information
masonedmison committed Sep 17, 2024
1 parent 873e732 commit 245238e
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,12 @@ class ShadowingCompletionSuite extends BaseCompletionSuite {
|ListBuffer - scala.collection.mutable
|""".stripMargin,
compat = Map(
"2" -> "ListBuffer - scala.collection.mutable"
"2" -> "ListBuffer - scala.collection.mutable",
"3" -> """|ListBuffer[A](elems: A*): CC[A]
|ListBuffer(i: Int): A
|ListBuffer - scala.collection.mutable
|ListBuffer - coursierapi.shaded.scala.collection.mutable
|""".stripMargin
)
)
}

0 comments on commit 245238e

Please sign in to comment.