aboutsummaryrefslogtreecommitdiff
path: root/tests/Parsers/StringParserTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Parsers/StringParserTest.php')
-rw-r--r--tests/Parsers/StringParserTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Parsers/StringParserTest.php b/tests/Parsers/StringParserTest.php
index 518defb..5c1a82b 100644
--- a/tests/Parsers/StringParserTest.php
+++ b/tests/Parsers/StringParserTest.php
@@ -29,7 +29,7 @@ use PHPUnit\Framework\TestCase;
*/
final class StringParserTest extends TestCase {
public function testValid(): void {
- $string = '<h1>Hello WorldÆØÅ!</h1>';
+ $string = '<h1>Hello World!</h1>';
self::assertEquals('Hello World!', StringParser::get($string));
}
}