File tree 2 files changed +6
-6
lines changed
src/Symfony/Component/CssSelector/Tests/Node
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 16
16
use Symfony \Component \CssSelector \Node \HashNode ;
17
17
use Symfony \Component \CssSelector \Node \MatchingNode ;
18
18
19
- class MatchingNodeTest extends AbstractNodeTest
19
+ class MatchingNodeTest extends AbstractNodeTestCase
20
20
{
21
- public function getToStringConversionTestData ()
21
+ public static function getToStringConversionTestData ()
22
22
{
23
23
return [
24
24
[new MatchingNode (new ElementNode (), [
@@ -28,7 +28,7 @@ public function getToStringConversionTestData()
28
28
];
29
29
}
30
30
31
- public function getSpecificityValueTestData ()
31
+ public static function getSpecificityValueTestData ()
32
32
{
33
33
return [
34
34
[new MatchingNode (new ElementNode (), [
Original file line number Diff line number Diff line change 16
16
use Symfony \Component \CssSelector \Node \HashNode ;
17
17
use Symfony \Component \CssSelector \Node \SpecificityAdjustmentNode ;
18
18
19
- class SpecificityAdjustmentNodeTest extends AbstractNodeTest
19
+ class SpecificityAdjustmentNodeTest extends AbstractNodeTestCase
20
20
{
21
- public function getToStringConversionTestData ()
21
+ public static function getToStringConversionTestData ()
22
22
{
23
23
return [
24
24
[new SpecificityAdjustmentNode (new ElementNode (), [
@@ -28,7 +28,7 @@ public function getToStringConversionTestData()
28
28
];
29
29
}
30
30
31
- public function getSpecificityValueTestData ()
31
+ public static function getSpecificityValueTestData ()
32
32
{
33
33
return [
34
34
[new SpecificityAdjustmentNode (new ElementNode (), [
You can’t perform that action at this time.
0 commit comments