Skip to content

Commit 6b3cf41

Browse files
committed
Update quotes
1 parent 3fdaf00 commit 6b3cf41

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/script.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* @returns MATLAB command.
99
*/
1010
export function cdAndCall(command: string): string {
11-
return `cd(getenv("MW_ORIG_WORKING_FOLDER"));${command}`;
11+
return `cd(getenv('MW_ORIG_WORKING_FOLDER'));${command}`;
1212
}
1313

1414
/**

src/script.unit.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ describe("call generation", () => {
66
it("ideally works", () => {
77
// I know what your thinking
88
const testCommand = "disp('hello world')";
9-
const expectedString = `cd(getenv("MW_ORIG_WORKING_FOLDER"));${testCommand}`;
9+
const expectedString = `cd(getenv('MW_ORIG_WORKING_FOLDER'));${testCommand}`;
1010

1111
expect(script.cdAndCall(testCommand)).toMatch(expectedString);
1212
});

0 commit comments

Comments
 (0)