Skip to content

Commit bf37dfb

Browse files
Fix a typo.
1 parent 4088e68 commit bf37dfb

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/test/common/platform/filesystem.functional.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -705,7 +705,7 @@ suite('FileSystem Utils', () => {
705705
});
706706

707707
suite('pathExists', () => {
708-
test('file missing (any})', async () => {
708+
test('file missing (any)', async () => {
709709
const exists = await utils.pathExists(DOES_NOT_EXIST);
710710

711711
expect(exists).to.equal(false);

src/test/common/platform/filesystem.unit.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -673,7 +673,7 @@ suite('FileSystem Utils', () => {
673673
});
674674

675675
suite('pathExists', () => {
676-
test('file missing (any})', async () => {
676+
test('file missing (any)', async () => {
677677
const filename = 'x/y/z/spam.py';
678678
filesystem.setup(f => f.stat(filename))
679679
.throws(new Error('file not found'));

0 commit comments

Comments
 (0)