Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 293a6cc

Browse files
committed
rebase and fix tests
1 parent 7b85bea commit 293a6cc

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

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

+3-3
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

+3-3
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)