1
0
Fork 0
mirror of https://github.com/archtechx/laravel-seo.git synced 2025-12-12 18:04:03 +00:00

Update tests/Pest/FaviconTest.php

Co-authored-by: Samuel Štancl <samuel.stancl@gmail.com>
This commit is contained in:
Lars Klopstra 2021-11-12 15:30:43 +01:00 committed by GitHub
parent 31fae087ff
commit 7b2fdccd69
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,7 +2,7 @@
use function PHPUnit\Framework\assertFileExists; use function PHPUnit\Framework\assertFileExists;
test('it should throw an exception if the given source icon doesn\'t exist', function() { test("it should throw an exception if the given source icon doesn't exist", function () {
seo()->favicon('i-dont-exist.png'); seo()->favicon('i-dont-exist.png');
})->throws(Exception::class, 'Given icon path `i-dont-exist.png` does not exist.'); })->throws(Exception::class, 'Given icon path `i-dont-exist.png` does not exist.');