Skip to content

Commit 725774f

Browse files
fix anotations
1 parent dd19fbc commit 725774f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/test/runTest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ async function main() {
1818
const [cliPath, ...args] = resolveCliArgsFromVSCodeExecutablePath(vscodeExecutablePath);
1919

2020
// Use cp.spawn / cp.exec for custom setup
21-
if (getOSType() == OSType.Windows) {
21+
if (getOSType() === OSType.Windows) {
2222
const exec = path.basename(cliPath);
2323
cp.spawnSync(exec, [...args, '--install-extension', PVSC_EXTENSION_ID_FOR_TESTS], {
2424
cwd: path.dirname(cliPath),

src/test/unittest/adapter/adapter.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ suite('Debugger Integration', () => {
5757
'launch': ['launch a file', [...defaultScriptArgs, outFile]],
5858
// prettier-ignore
5959
'attach': ['attach to a local port', defaultScriptArgs],
60-
'attach to PID': ['attach to a local PID', defaultScriptArgs],
60+
'attach to PID': ['attach to a local PID', defaultScriptArgs], // eslint-disable-line no-use-before-define
6161
// For now we do not worry about "test" debugging.
6262
};
6363

0 commit comments

Comments
 (0)