Skip to content

Commit e3f4970

Browse files
committed
Fix lint issue
1 parent 8724360 commit e3f4970

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/test/unittest/noConfigDebugInit.unit.test.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,10 @@ suite('setup for no-config debug scenario', function () {
9999

100100
// Assert
101101
sinon.assert.calledOnce(createFileSystemWatcherFunct);
102-
const expectedPattern = new RelativePattern(path.join(os.tmpdir(), '.noConfigDebugAdapterEndpoints'), '**/*.txt');
102+
const expectedPattern = new RelativePattern(
103+
path.join(os.tmpdir(), '.noConfigDebugAdapterEndpoints'),
104+
'**/*.txt',
105+
);
103106
sinon.assert.calledWith(createFileSystemWatcherFunct, expectedPattern);
104107
});
105108

0 commit comments

Comments
 (0)