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 787ae345269aff1473afa17a7849ebebe5a8b83e..a4596dc1fa8cd024693a876f35006a3865b92f90 100644 |
--- a/tests/lib/convert/html_escape_test.dart |
+++ b/tests/lib/convert/html_escape_test.dart |
@@ -10,8 +10,8 @@ const _NOOP = 'Nothing_to_escape'; |
const _TEST_INPUT = """<A </test> of \xA0 "double" & 'single' values>"""; |
-const _OUTPUT_UNKNOWN = '<A </test> of \xA0 "double" & ' |
- ''single' values>'; |
+const _OUTPUT_UNKNOWN = '<A <.test> of \xA0 "double" ' |
+ '& 'single' values>'; |
const _OUTPUT_ATTRIBUTE = |
"<A </test> of \xA0 "double" & 'single' values>"; |
@@ -48,8 +48,7 @@ void _testConvert(HtmlEscape escape, String input, String expected) { |
void _testTransform(HtmlEscape escape, String input, String expected) { |
var controller = new StreamController(sync: true); |
- var stream = controller.stream |
- .transform(escape); |
+ var stream = controller.stream.transform(escape); |
var done = false; |
int count = 0; |