Skip to content

Commit ac45ac4

Browse files
committed
Format
1 parent 4b5ecb9 commit ac45ac4

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

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

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -193,11 +193,9 @@ suite('setup for no-config debug scenario', function () {
193193

194194
// Assert
195195
sinon.assert.calledOnce(createFileSystemWatcherFunct);
196-
const expectedPattern = sinon
197-
.match.instanceOf(RelativePattern)
198-
.and(
199-
sinon.match.has('base', path.join(os.tmpdir(), '.noConfigDebugAdapterEndpoints')),
200-
)
196+
const expectedPattern = sinon.match
197+
.instanceOf(RelativePattern)
198+
.and(sinon.match.has('base', path.join(os.tmpdir(), '.noConfigDebugAdapterEndpoints')))
201199
.and(sinon.match.has('pattern', sinon.match(/^endpoint-[0-9a-f]{16}\.txt$/)));
202200
sinon.assert.calledWith(createFileSystemWatcherFunct, expectedPattern);
203201
});

0 commit comments

Comments
 (0)