Skip to content

Commit 6d64839

Browse files
committed
Fix test
1 parent ee9c87c commit 6d64839

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extensions/markdown-language-features/src/test/pathCompletion.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,6 @@ suite('Markdown path completion provider', () => {
149149
`[](./sub/${CURSOR})`
150150
));
151151

152-
assert.ok(completions.some(x => x.label === 'file%20with%20space.md'), 'Has encoded path completion');
152+
assert.ok(completions.some(x => x.insertText === 'file%20with%20space.md'), 'Has encoded path completion');
153153
});
154154
});

0 commit comments

Comments
 (0)