Skip to content

Commit

Permalink
fix: tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Viijay-Kr committed Dec 14, 2024
1 parent f3b34b0 commit a9e1ea7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/test/suite/extension.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -566,7 +566,7 @@ suite("Extension Test Suite", async () => {
await window.showTextDocument(document);
await Storage.bootstrap();
const provider = new CssVariablesCompletion();
const position = new Position(6, 31);
const position = new Position(7, 31);
const result = await provider.provideCompletionItems(
document,
position,
Expand All @@ -582,7 +582,7 @@ suite("Extension Test Suite", async () => {
await window.showTextDocument(document);
await Storage.bootstrap();
const provider = new CssVariablesCompletion();
const position = new Position(46, 14);
const position = new Position(45, 14);
const result = await provider.provideCompletionItems(
document,
position,
Expand Down Expand Up @@ -611,7 +611,7 @@ suite("Extension Test Suite", async () => {
await window.showTextDocument(document);
await Storage.bootstrap();
const provider = new CssDefinitionProvider();
const position = new Position(40, 21);
const position = new Position(39, 21);
const result = await provider.provideDefinition(document, position);
assert.equal(result.length > 0, true);
});
Expand Down

0 comments on commit a9e1ea7

Please sign in to comment.