8000 fix merge · symfony/symfony@48db494 · GitHub
[go: up one dir, main page]

Skip to content

Commit 48db494

Browse files
fix merge
1 parent 30fc304 commit 48db494

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/CssSelector/Tests/CssSelectorConverterTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public function getCssToXPathWithoutPrefixTestData()
5959
array('h1', 'h1'),
6060
array('foo|h1', 'foo:h1'),
6161
array('h1, h2, h3', 'h1 | h2 | h3'),
62-
array('h1:nth-child(3n+1)', "*/*[name() = 'h1' and (position() - 1 >= 0 and (position() - 1) mod 3 = 0)]"),
62+
array('h1:nth-child(3n+1)', "*/*[(name() = 'h1') and (position() - 1 >= 0 and (position() - 1) mod 3 = 0)]"),
6363
array('h1 > p', 'h1/p'),
6464
array('h1#foo', "h1[@id = 'foo']"),
6565
array('h1.foo', "h1[@class and contains(concat(' ', normalize-space(@class), ' '), ' foo ')]"),

0 commit comments

Comments
 (0)
0