Skip to content

Commit

Permalink
Fix windows test
Browse files Browse the repository at this point in the history
  • Loading branch information
mjbvz committed Dec 17, 2024
1 parent 70dc7fc commit d12587c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ suite('Decoration Render Options', () => {
if (platform.isWindows) {
// windows file path (used as string)
s.registerDecorationType('test', 'example', { gutterIconPath: URI.file('c:\\files\\miles\\more.png') });
assertBackground('file:///c:/files/miles/more.png', 'vscode-file://vscode-app/c:/files/miles/more.png');
assertBackground(CSS.escape('file:///c:/files/miles/more.png'), CSS.escape('vscode-file://vscode-app/c:/files/miles/more.png'));
s.removeDecorationType('example');

// single quote must always be escaped/encoded
Expand Down

0 comments on commit d12587c

Please sign in to comment.