Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
DanTup committed Mar 3, 2022
1 parent fac8c20 commit 6cd7da7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/dart/providers/main_code_lens_provider.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ describe("main_code_lens", () => {
}

const runAction = codeLensForMainFunction.find((cl) => cl.command!.title === "Run")!;
assert.equal(runAction.command!.arguments![1].env.LAUNCH_ENV_VAR, "true");
assert.equal(runAction.command!.arguments![1].env.LAUNCH_ENV_VAR, "default");

const debugAction = codeLensForMainFunction.find((cl) => cl.command!.title === "Debug")!;
assert.equal(debugAction.command!.arguments![1].env.LAUNCH_ENV_VAR, "true");
assert.equal(debugAction.command!.arguments![1].env.LAUNCH_ENV_VAR, "noDebugExplicitlyFalse");
});

for (const debugType of [
Expand Down

0 comments on commit 6cd7da7

Please sign in to comment.