Skip to content

Commit 8735c79

Browse files
committed
Remove incorrect test; diacritical characters are allowed in URI
1 parent 3908280 commit 8735c79

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/SAML2/Assert/EntityIDTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public static function provideEntityID(): array
4747
'urn' => [true, 'urn:x-simplesamlphp:phpunit'],
4848
'same-doc' => [false, '#_53d830ab1be17291a546c95c7f1cdf8d3d23c959e6'],
4949
'url' => [true, 'https://www.simplesamlphp.org'],
50-
'invalid_char' => [false, 'https://a⒈com'],
50+
'utf8_char' => [true, 'https://aä.com'],
5151
'intl' => [true, 'https://niño.com'],
5252
'spn' => [true, 'spn:a4cf592f-a64c-46ff-a788-b260f474525b'],
5353
'typos' => [false, 'https//www.uni.l/en/'],

tests/SAML2/Assert/URITest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public static function provideURI(): array
4444
'urn' => [true, 'urn:x-simplesamlphp:phpunit'],
4545
'same-doc' => [false, '#_53d830ab1be17291a546c95c7f1cdf8d3d23c959e6'],
4646
'url' => [true, 'https://www.simplesamlphp.org'],
47-
'invalid_char' => [false, 'https://a⒈com'],
47+
'utf8_char' => [true, 'https://aä.com'],
4848
'intl' => [true, 'https://niño.com'],
4949
'spn' => [true, 'spn:a4cf592f-a64c-46ff-a788-b260f474525b'],
5050
'typos' => [false, 'https//www.uni.l/en/'],

0 commit comments

Comments
 (0)