mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-25 02:58:56 +01:00
Do not suggest own file for path completion. Fix #57384
This commit is contained in:
@@ -95,7 +95,6 @@ suite('Completions', () => {
|
||||
|
||||
assertCompletions(`html { background-image: url('|')`, {
|
||||
items: [
|
||||
{ label: 'about.css', resultText: `html { background-image: url('about.css')` },
|
||||
{ label: 'about.html', resultText: `html { background-image: url('about.html')` },
|
||||
]
|
||||
}, testUri, folders);
|
||||
@@ -156,7 +155,6 @@ suite('Completions', () => {
|
||||
|
||||
assertCompletions(`@import './|'`, {
|
||||
items: [
|
||||
{ label: 'about.css', resultText: `@import './about.css'` },
|
||||
{ label: 'about.html', resultText: `@import './about.html'` },
|
||||
]
|
||||
}, testUri, folders);
|
||||
|
||||
Reference in New Issue
Block a user