Skip to content

Commit b7004bd

Browse files
authored
test(vscode): used double quotes on create stub (#1070)
1 parent 62a00c4 commit b7004bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extensions/vscode/src/test/suite/commands/create.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ suite("create command", () => {
208208

209209
test("shows error when `dart_frog create` command fails", async () => {
210210
const error = new Error("Command failed");
211-
const createCommand = "dart_frog create 'my_project'";
211+
const createCommand = `dart_frog create "my_project"`;
212212

213213
vscodeStub.window.showInputBox.returns("my_project");
214214
childProcessStub.exec.withArgs(createCommand).yields(error);

0 commit comments

Comments
 (0)