| Index: tests/lib/convert/html_escape_test.dart
|
| diff --git a/tests/lib/convert/html_escape_test.dart b/tests/lib/convert/html_escape_test.dart
|
| index 691547b7c011b948a51617aa6849f860e1c763ca..674c781eac4d49096b5354e1b6c23794b4d26274 100644
|
| --- a/tests/lib/convert/html_escape_test.dart
|
| +++ b/tests/lib/convert/html_escape_test.dart
|
| @@ -8,15 +8,15 @@ import 'dart:convert';
|
|
|
| const _NOOP = 'Nothing_to_escape';
|
|
|
| -const _TEST_INPUT = '<A <test> of \u00A0 "double" & \'single\' values>';
|
| +const _TEST_INPUT = '<A </test> of \u00A0 "double" & \'single\' values>';
|
|
|
| -const _OUTPUT_UNKNOWN = '<A <test> of "double" & '
|
| - ''single' values>';
|
| +const _OUTPUT_UNKNOWN = '<A </test> of "double" & '
|
| + ''single' values>';
|
|
|
| -const _OUTPUT_ATTRIBUTE = "<A <test> of "double" & "
|
| +const _OUTPUT_ATTRIBUTE = "<A </test> of "double" & "
|
| "\'single\' values>";
|
|
|
| -const _OUTPUT_ELEMENT = '<A <test> of "double" & '
|
| +const _OUTPUT_ELEMENT = '<A </test> of "double" & '
|
| '\'single\' values>';
|
|
|
| void _testMode(HtmlEscape escape, String input, String expected) {
|
|
|