Skip to content

Commit 19f8b08

Browse files
committed
tests: fix CSSValidatorTest::testHtmlUri
1 parent 491e19d commit 19f8b08

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/CSSValidatorTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public function testHtmlUri(): void
2323
$validator = new CSSValidator();
2424
$result = $validator->validateUri('http://example.com');
2525
self::assertEmpty($result->getErrors());
26-
self::assertNotEmpty($result->getWarnings());
26+
self::assertEmpty($result->getWarnings());
2727
self::assertTrue($result->isValid());
2828
self::assertSame(Options::PROFILE_CSS3, $result->getCssLevel());
2929
}

0 commit comments

Comments
 (0)