Skip to content

Commit 614170f

Browse files
authored
Temporary fix to CompletionScalaCliSuite (#21564)
The [release of `circe/circe` version 0.14.10 yesterday](https://index.scala-lang.org/circe/circe/artifacts/circe-core/0.14.10) broke the tests. This is just a temporary fix as imo, we should not have any external dependencies in this repository. The policy for testing to be defined. [test_java8] [test_scala2_library_tasty] Closes #21561
2 parents 67cd3eb + c361d7e commit 614170f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

presentation-compiler/test/dotty/tools/pc/tests/completion/CompletionScalaCliSuite.scala

+4-4
Original file line numberDiff line numberDiff line change
@@ -59,19 +59,19 @@ class CompletionScalaCliSuite extends BaseCompletionSuite:
5959

6060
@Test def `version` =
6161
check(
62-
"""|//> using lib "io.circe::circe-core_sjs1:0.14.1@@"
62+
"""|//> using lib "io.circe::circe-core_sjs1:0.14.10@@"
6363
|package A
6464
|""".stripMargin,
65-
"0.14.1"
65+
"0.14.10"
6666
)
6767

6868
// We don't to add `::` before version if `sjs1` is specified
6969
@Test def `version-edit` =
7070
checkEdit(
71-
"""|//> using lib "io.circe::circe-core_sjs1:0.14.1@@"
71+
"""|//> using lib "io.circe::circe-core_sjs1:0.14.10@@"
7272
|package A
7373
|""".stripMargin,
74-
"""|//> using lib "io.circe::circe-core_sjs1:0.14.1"
74+
"""|//> using lib "io.circe::circe-core_sjs1:0.14.10"
7575
|package A
7676
|""".stripMargin,
7777
)

0 commit comments

Comments
 (0)