Skip to content

Commit 3a731e2

Browse files
committed
Update those tests that I missed
1 parent 6c2541f commit 3a731e2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/phpunit/tests/formatting/normalizeEscapedHtmlText.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public static function data_example_datasets() {
3838
array( 'data', 'spec > guess', 'spec > guess' ),
3939
array( 'data', 'art & copy', 'art & copy' ),
4040
array( 'data', '&#x1F170', '🅰' ),
41-
array( 'data', '&#x1F170 ', '🅰 ' ),
41+
array( 'data', '&#x1F170 ', '🅰 ' ),
4242

4343
// The “ambiguous ampersand” has different rules in the attribute value and data states.
4444
array( 'attribute', '&notmyproblem', '&notmyproblem' ),
@@ -48,7 +48,7 @@ public static function data_example_datasets() {
4848
array( 'attribute', 'eat 3 apples', 'eat 3 apples' ),
4949
array( 'data', 'eat 3 apples', 'eat 3 apples' ),
5050
array( 'data', '<&#x00073;cr&#0105pt&gt;', '&lt;script&gt;' ),
51-
array( 'attribute', '&#x6a;avascript&#58alert&#40;&#x0000007b"test&quot;&#125;&#41;', 'javascript:alert&#40;&#x7b;&quot;test&quot;&#125;&#41;' ),
51+
array( 'attribute', '&#x6a;avascript&#58alert&#40;&#x0000007b"test&quot;&#125;&#41;', 'javascript:alert&#40;&#x7B;&quot;test&quot;&#125;&#41;' ),
5252

5353
// Syntax characters should be represented uniformly.
5454
array( 'attribute', '&#X3CIMG&#00062', '&lt;IMG&gt;' ),

0 commit comments

Comments
 (0)