Skip to content

Commit

Permalink
Remove incorrect test; diacritical characters are allowed in URI
Browse files Browse the repository at this point in the history
  • Loading branch information
tvdijen committed Jan 8, 2025
1 parent 3908280 commit 8735c79
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/SAML2/Assert/EntityIDTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public static function provideEntityID(): array
'urn' => [true, 'urn:x-simplesamlphp:phpunit'],
'same-doc' => [false, '#_53d830ab1be17291a546c95c7f1cdf8d3d23c959e6'],
'url' => [true, 'https://www.simplesamlphp.org'],
'invalid_char' => [false, 'https://a⒈com'],
'utf8_char' => [true, 'https://aä.com'],
'intl' => [true, 'https://niño.com'],
'spn' => [true, 'spn:a4cf592f-a64c-46ff-a788-b260f474525b'],
'typos' => [false, 'https//www.uni.l/en/'],
Expand Down
2 changes: 1 addition & 1 deletion tests/SAML2/Assert/URITest.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public static function provideURI(): array
'urn' => [true, 'urn:x-simplesamlphp:phpunit'],
'same-doc' => [false, '#_53d830ab1be17291a546c95c7f1cdf8d3d23c959e6'],
'url' => [true, 'https://www.simplesamlphp.org'],
'invalid_char' => [false, 'https://a⒈com'],
'utf8_char' => [true, 'https://aä.com'],
'intl' => [true, 'https://niño.com'],
'spn' => [true, 'spn:a4cf592f-a64c-46ff-a788-b260f474525b'],
'typos' => [false, 'https//www.uni.l/en/'],
Expand Down

0 comments on commit 8735c79

Please sign in to comment.