Skip to content

Commit b07f2d7

Browse files
committed
tests: fix HTMLValidatorTest::testUri
1 parent 469218f commit b07f2d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/HTMLValidatorTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public function testUri(): void
1212
$validator = new HTMLValidator();
1313
$result = $validator->validateUri('http://example.com');
1414
self::assertNotEmpty($result->getErrors());
15-
self::assertNotEmpty($result->getWarnings());
15+
self::assertEmpty($result->getWarnings());
1616

1717
self::assertFalse($result->isValid());
1818
self::assertSame('http://example.com', $result->getUri());

0 commit comments

Comments
 (0)