8000 rebase and fix tests · symfony/symfony@0645cf6 · GitHub
[go: up one dir, main page]

Skip to content
8000

Commit 0645cf6

Browse files
committed
rebase and fix tests
1 parent 84ad8a2 commit 0645cf6

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/Symfony/Component/CssSelector/Tests/Node/MatchingNodeTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
use Symfony\Component\CssSelector\Node\HashNode;
1717
use Symfony\Component\CssSelector\Node\MatchingNode;
1818

19-
class MatchingNodeTest extends AbstractNodeTest
19+
class MatchingNodeTest extends AbstractNodeTestCase
2020
{
21-
public function getToStringConversionTestData()
21+
public static function getToStringConversionTestData()
2222
{
2323
return [
2424
[new MatchingNode(new ElementNode(), [
@@ -28,7 +28,7 @@ public function getToStringConversionTestData()
2828
];
2929
}
3030

31-
public function getSpecificityValueTestData()
31+
public static function getSpecificityValueTestData()
3232
{
3333
return [
3434
[new MatchingNode(new ElementNode(), [

src/Symfony/Component/CssSelector/Tests/Node/SpecificityAdjustmentNodeTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
use Symfony\Component\CssSelector\Node\HashNode;
1717
use Symfony\Component\CssSelector\Node\SpecificityAdjustmentNode;
1818

19-
class SpecificityAdjustmentNodeTest extends AbstractNodeTest
19+
class SpecificityAdjustmentNodeTest extends AbstractNodeTestCase
2020
{
21-
public function getToStringConversionTestData()
21+
public static function getToStringConversionTestData()
2222
{
2323
return [
2424
[new SpecificityAdjustmentNode(new ElementNode(), [
@@ -28,7 +28,7 @@ public function getToStringConversionTestData()
2828
];
2929
}
3030

31-
public function getSpecificityValueTestData()
31+
public static function getSpecificityValueTestData()
3232
{
3333
return [
3434
[new SpecificityAdjustmentNode(new ElementNode(), [

0 commit comments

Comments
 (0)
0