File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
frontend/src/test/scala/bloop/bsp Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ abstract class BspBaseSuite extends BaseSuite with BspClientTest {
100100 def findBuildTarget (project : TestProject ): bsp.BuildTarget = {
101101 val workspaceTargetTask = {
102102 Workspace .buildTargets.request(bsp.WorkspaceBuildTargetsRequest ()).map {
103- case Left (_) => fail(" The request for build targets in ${state.build.origin} failed!" )
103+ case Left (_) => fail(s " The request for build targets in ${state.build.origin} failed! " )
104104 case Right (ts) =>
105105 ts.targets.map(t => t.id -> t).find(_._1 == project.bspId) match {
106106 case Some ((_, target)) => target
@@ -128,7 +128,7 @@ abstract class BspBaseSuite extends BaseSuite with BspClientTest {
128128 project : TestProject
129129 )(f : bsp.BuildTargetIdentifier => Task [T ]): Task [T ] = {
130130 Workspace .buildTargets.request(bsp.WorkspaceBuildTargetsRequest ()).flatMap {
131- case Left (_) => fail(" The request for build targets in ${state.build.origin} failed!" )
131+ case Left (_) => fail(s " The request for build targets in ${state.build.origin} failed! " )
132132 case Right (ts) =>
133133 ts.targets.map(_.id).find(_ == project.bspId) match {
134134 case Some (target) => f(target)
You can’t perform that action at this time.
0 commit comments