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 {
100
100
def findBuildTarget (project : TestProject ): bsp.BuildTarget = {
101
101
val workspaceTargetTask = {
102
102
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! " )
104
104
case Right (ts) =>
105
105
ts.targets.map(t => t.id -> t).find(_._1 == project.bspId) match {
106
106
case Some ((_, target)) => target
@@ -128,7 +128,7 @@ abstract class BspBaseSuite extends BaseSuite with BspClientTest {
128
128
project : TestProject
129
129
)(f : bsp.BuildTargetIdentifier => Task [T ]): Task [T ] = {
130
130
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! " )
132
132
case Right (ts) =>
133
133
ts.targets.map(_.id).find(_ == project.bspId) match {
134
134
case Some (target) => f(target)
You can’t perform that action at this time.
0 commit comments