Skip to content

Commit 94d1329

Browse files
committed
Fix tests
1 parent f40b850 commit 94d1329

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/test/css/codeActions.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ suite('CSS - Code Actions', () => {
4949
testCodeActions('body { /*here*/background-colar: red }', '/*here*/', [
5050
{ title: 'Rename to \'background-color\'', content: 'body { /*here*/background-color: red }' },
5151
{ title: 'Rename to \'background-clip\'', content: 'body { /*here*/background-clip: red }' },
52-
{ title: 'Rename to \'background-image\'', content: 'body { /*here*/background-image: red }' }
52+
{ title: 'Rename to \'background-origin\'', content: 'body { /*here*/background-origin: red }' }
5353
]);
5454
});
5555
});

src/test/css/lint.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,6 @@ suite('CSS - Lint', () => {
9494
assertRuleSet('selector { line-height: 0EM }', Rules.ZeroWithUnit);
9595
assertRuleSet('selector { line-height: 0pc }', Rules.ZeroWithUnit);
9696
assertRuleSet('selector { min-height: 0% }');
97-
assertRuleSet('selector { azimuth: 30deg }', Rules.UnknownProperty);
9897
});
9998

10099
test('duplicate declarations', function () {

0 commit comments

Comments
 (0)