Skip to content
This repository was archived by the owner on Dec 19, 2024. It is now read-only.

Commit c9e936a

Browse files
committed
Fix tests according to postcss-selector-not latest fix
1 parent c9b4da5 commit c9e936a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/__tests__/fixtures/cases/example.actual.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ a:after {
7575
p:first-child, p.specific {
7676
color: red;
7777
}
78-
p:not(:first-child), p:not(.specific) {
78+
p:not(:first-child):not(.specific) {
7979
background: blue;
8080
}
8181

src/__tests__/fixtures/cases/example.expected.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ a:after {
7575
p:first-child, p.specific {
7676
color: red;
7777
}
78-
p:not(:first-child), p:not(.specific) {
78+
p:not(:first-child):not(.specific) {
7979
background: blue;
8080
}
8181

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
p:not(:first-child), p:not(.specific) {
1+
p:not(:first-child):not(.specific) {
22
background: blue;
33
}

0 commit comments

Comments
 (0)