Skip to content

Commit 79bcc5c

Browse files
committed
Fix language server tests
I accidentally replaced `"` by `'` in the generated .dotty-ide.json file in 2ae438d which broke everything.
1 parent b4b9fe5 commit 79bcc5c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

language-server/test/dotty/tools/languageserver/util/server/TestServer.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ class TestServer(testFolder: Path, projects: List[Project]) {
4343
def projectSetup(project: Project): String = {
4444
def showSeq[T](lst: collection.Seq[T]): String =
4545
lst
46-
.map(elem => s"'${elem.toString.replace('\\', '/')}'")
46+
.map(elem => '"'.toString + elem.toString.replace('\\', '/') + '"'.toString)
4747
.mkString("[ ", ", ", " ]")
4848

4949
if (project.sources.exists(_.isInstanceOf[TastyWithPositions])) {

0 commit comments

Comments
 (0)