@@ -21,7 +21,7 @@ final class AtRuleBlockListTest extends TestCase
21
21
*/
22
22
public function implementsAtRule (): void
23
23
{
24
- $ subject = new AtRuleBlockList ('' );
24
+ $ subject = new AtRuleBlockList ('supports ' );
25
25
26
26
self ::assertInstanceOf (AtRuleBlockList::class, $ subject );
27
27
}
@@ -31,7 +31,7 @@ public function implementsAtRule(): void
31
31
*/
32
32
public function implementsRenderable (): void
33
33
{
34
- $ subject = new AtRuleBlockList ('' );
34
+ $ subject = new AtRuleBlockList ('supports ' );
35
35
36
36
self ::assertInstanceOf (Renderable::class, $ subject );
37
37
}
@@ -41,7 +41,7 @@ public function implementsRenderable(): void
41
41
*/
42
42
public function implementsCommentable (): void
43
43
{
44
- $ subject = new AtRuleBlockList ('' );
44
+ $ subject = new AtRuleBlockList ('supports ' );
45
45
46
46
self ::assertInstanceOf (Commentable::class, $ subject );
47
47
}
@@ -51,7 +51,7 @@ public function implementsCommentable(): void
51
51
*/
52
52
public function atRuleNameReturnsTypeProvidedToConstructor (): void
53
53
{
54
- $ type = 'foo ' ;
54
+ $ type = 'keyframes ' ;
55
55
56
56
$ subject = new AtRuleBlockList ($ type );
57
57
@@ -63,7 +63,7 @@ public function atRuleNameReturnsTypeProvidedToConstructor(): void
63
63
*/
64
64
public function getLineNoByDefaultReturnsZero (): void
65
65
{
66
- $ subject = new AtRuleBlockList ('' );
66
+ $ subject = new AtRuleBlockList ('supports ' );
67
67
68
68
self ::assertSame (0 , $ subject ->getLineNo ());
69
69
}
@@ -73,7 +73,7 @@ public function getLineNoByDefaultReturnsZero(): void
73
73
*/
74
74
public function atRuleArgsByDefaultReturnsEmptyString (): void
75
75
{
76
- $ subject = new AtRuleBlockList ('' );
76
+ $ subject = new AtRuleBlockList ('supports ' );
77
77
78
78
self ::assertSame ('' , $ subject ->atRuleArgs ());
79
79
}
@@ -107,7 +107,7 @@ public function getLineNoReturnsLineNumberProvidedToConstructor(): void
107
107
*/
108
108
public function isRootListAlwaysReturnsFalse (): void
109
109
{
110
- $ subject = new AtRuleBlockList ('' );
110
+ $ subject = new AtRuleBlockList ('supports ' );
111
111
112
112
self ::assertFalse ($ subject ->isRootList ());
113
113
}
0 commit comments