Skip to content

Commit

Permalink
bugfix: Fix Worksheet3NextSuite
Browse files Browse the repository at this point in the history
  • Loading branch information
tgodzik committed Oct 19, 2024
1 parent 97cc557 commit e54b6b2
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions tests/unit/src/main/scala/tests/BaseWorksheetLspSuite.scala
Original file line number Diff line number Diff line change
Expand Up @@ -427,11 +427,19 @@ abstract class BaseWorksheetLspSuite(
// completions work despite error
_ = assertNoDiff(
max,
s"""|max(that: Double): Double
|max(that: Float): Float
|max(that: Int): Int
|max(that: Long): Long
|""".stripMargin,
getExpected(
s"""|max(that: Double): Double
|max(that: Float): Float
|max(that: Int): Int
|max(that: Long): Long
|""".stripMargin,
Map(
"3.6" ->
s"""|max(that: Int): Int
|""".stripMargin
),
scalaVersion,
),
)
} yield ()
}
Expand Down

0 comments on commit e54b6b2

Please sign in to comment.