We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b47f2f8 commit 7fac016Copy full SHA for 7fac016
tests/Unit/CSSList/DocumentTest.php
@@ -215,7 +215,7 @@ public function getAllDeclarationBlocksIgnoresImport(): void
215
{
216
$subject = new Document();
217
218
- $import = new Import(new URL(new CSSString('')), '');
+ $import = new Import(new URL(new CSSString('https://www.example.com/')), '');
219
$subject->setContents([$import]);
220
221
$result = $subject->getAllDeclarationBlocks();
@@ -230,7 +230,7 @@ public function getAllDeclarationBlocksIgnoresCharset(): void
230
231
232
233
- $charset = new Charset(new CSSString(''));
+ $charset = new Charset(new CSSString('UTF-8'));
234
$subject->setContents([$charset]);
235
236
0 commit comments