Skip to content

Commit 11faa1b

Browse files
authored
fix formatting (#391)
1 parent e20f006 commit 11faa1b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/test/less/parser.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -352,6 +352,6 @@ suite('LESS - Parser', () => {
352352
test('@container', function () {
353353
const parser = new LESSParser();
354354
assertNode(`.item-icon { @container (max-height: 100px) { .item-icon { display: none; } } }`, parser, parser._parseStylesheet.bind(parser));
355-
assertNode(`:root { @container (max-height: 100px) { display: none;} }`,parser,parser._parseStylesheet.bind(parser));
355+
assertNode(`:root { @container (max-height: 100px) { display: none;} }`, parser, parser._parseStylesheet.bind(parser));
356356
});
357357
});

src/test/scss/parser.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ suite('SCSS - Parser', () => {
292292
const parser = new SCSSParser();
293293
assertNode(`@container (min-width: #{$minWidth}) { .scss-interpolation { line-height: 10cqh; } }`, parser, parser._parseStylesheet.bind(parser));
294294
assertNode(`.item-icon { @container (max-height: 100px) { .item-icon { display: none; } } }`, parser, parser._parseStylesheet.bind(parser));
295-
assertNode(`:root { @container (max-height: 100px) { display: none;} }`,parser,parser._parseStylesheet.bind(parser));
295+
assertNode(`:root { @container (max-height: 100px) { display: none;} }`, parser, parser._parseStylesheet.bind(parser));
296296
});
297297

298298
test('@use', function () {

0 commit comments

Comments
 (0)