diff --git a/css/css-nesting/parsing.html b/css/css-nesting/parsing.html
index 2b0fd5cde9d3ca..ee9f35484469cb 100644
--- a/css/css-nesting/parsing.html
+++ b/css/css-nesting/parsing.html
@@ -49,7 +49,7 @@
testNestedSelector("> .bar", {expected:"& > .bar"});
testNestedSelector("> & .bar", {expected: "& > & .bar"});
testNestedSelector("+ .bar &", {expected:"& + .bar &"});
- testNestedSelector("+ .bar, .foo, > .baz", {expected:"& + .bar, & .foo, & > .baz"});
+ testNestedSelector("+ .bar, .foo, > .baz", {expected:"& + .bar, .foo, & > .baz"});
// implicit relative (and not)
testNestedSelector(".foo");