Skip to content

Commit b571759

Browse files
fix lint
1 parent 7ebfbc4 commit b571759

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/test/debugger/extension/configuration/resolvers/launch.unit.test.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -768,10 +768,7 @@ getInfoPerOS().forEach(([osName, osType, path]) => {
768768
expect(debugConfig).to.have.property('redirectOutput', true);
769769
expect(debugConfig).to.have.property('justMyCode', false);
770770
expect(debugConfig).to.have.property('debugOptions');
771-
const expectedOptions = [
772-
DebugOptions.ShowReturnValue,
773-
DebugOptions.RedirectOutput,
774-
];
771+
const expectedOptions = [DebugOptions.ShowReturnValue, DebugOptions.RedirectOutput];
775772
if (osType === platform.OSType.Windows) {
776773
expectedOptions.push(DebugOptions.FixFilePathCase);
777774
}

0 commit comments

Comments
 (0)