Skip to content

Commit b277157

Browse files
committed
Update signature help test
1 parent 65fe22b commit b277157

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

language-server/test/dotty/tools/languageserver/SignatureHelpTest.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ class SignatureHelpTest {
210210
@Test def typeParameters: Unit = {
211211
val signature =
212212
S("foo",
213-
List("M <: [X] => Any", "T <: [Z] => M[Z]", "U >: T"),
213+
List("M[X]", "T[Z] <: M[Z]", "U >: T"),
214214
List(
215215
List(P("p0", "M[Int]"), P("p1", "T[Int]"), P("p2", "U"))
216216
),
@@ -315,7 +315,7 @@ class SignatureHelpTest {
315315
@Test def classTypeParameters: Unit = {
316316
val signature =
317317
S("Foo",
318-
List("M <: [X] => Any", "T <: [Z] => M[Z]", "U"),
318+
List("M[X]", "T[Z] <: M[Z]", "U"),
319319
List(
320320
List(P("p0", "M[Int]"), P("p1", "T[Int]"), P("p2", "U")),
321321
List(P("p3", "Int"))

0 commit comments

Comments
 (0)