Skip to content

Commit

Permalink
Fix BspTest - add file separator
Browse files Browse the repository at this point in the history
  • Loading branch information
lwronski committed Nov 6, 2021
1 parent a1a7c43 commit bc2f815
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import ch.epfl.scala.bsp4j.BuildTargetIdentifier
import ch.epfl.scala.{bsp4j => b}
import com.eed3si9n.expecty.Expecty.expect

import java.io.File
import java.net.URI
import java.nio.charset.Charset
import java.nio.file.Paths
Expand Down Expand Up @@ -225,7 +226,7 @@ abstract class BspTestDefinitions(val scalaVersionOpt: Option[String])
"bsp",
"--json-options",
(root / "directory" / ".scala" / "ide-options.json").toString,
s"${(root / "directory").toString}/"
s"${(root / "directory").toString}${File.separator}"
)
expect(details.argv == expectedArgv)
}
Expand Down

0 comments on commit bc2f815

Please sign in to comment.