Skip to content

Commit dd8528d

Browse files
Fix lint
1 parent d58a71d commit dd8528d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/test/unittest/configuration/resolvers/attach.unit.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -568,7 +568,7 @@ getInfoPerOS().forEach(([osName, osType, path]) => {
568568

569569
test('Send consoleName value to debugpy as consoleTitle', async () => {
570570
const activeFile = 'xyz.py';
571-
const consoleName = "My Console Name";
571+
const consoleName = 'My Console Name';
572572
const workspaceFolder = createMoqWorkspaceFolder(__dirname);
573573
setupActiveEditor(activeFile, PYTHON_LANGUAGE);
574574
const defaultWorkspace = path.join('usr', 'desktop');

src/test/unittest/configuration/resolvers/launch.unit.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -954,7 +954,7 @@ getInfoPerOS().forEach(([osName, osType, path]) => {
954954
});
955955

956956
test('Send consoleName value to debugpy as consoleTitle', async () => {
957-
const consoleName = "My Console Name";
957+
const consoleName = 'My Console Name';
958958
const pythonPath = `PythonPath_${new Date().toString()}`;
959959
const workspaceFolder = createMoqWorkspaceFolder(__dirname);
960960
const pythonFile = 'xyz.py';
@@ -963,7 +963,7 @@ getInfoPerOS().forEach(([osName, osType, path]) => {
963963

964964
const debugConfig = await resolveDebugConfiguration(workspaceFolder, {
965965
...launch,
966-
...{ consoleName }
966+
...{ consoleName },
967967
});
968968
expect(debugConfig).to.have.property('consoleTitle', consoleName);
969969
});

0 commit comments

Comments
 (0)