Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(217)

Unified Diff: tests/lib/math/math_parse_double_test.dart

Issue 2733353002: Remove U+180E from whitespace in js_runtime and tests (Closed)
Patch Set: also corelib_strong Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tests/lib/math/math_parse_double_test.dart
diff --git a/tests/lib/math/math_parse_double_test.dart b/tests/lib/math/math_parse_double_test.dart
index 666a9e5041233035f5993e6a504ec82e0da2748a..9b122a737797d7c4de6396dd715aa6a6871e3fdd 100644
--- a/tests/lib/math/math_parse_double_test.dart
+++ b/tests/lib/math/math_parse_double_test.dart
@@ -26,7 +26,6 @@ void runTest(double expected, String input) {
Expect.equals(expected, double.parse("\xA0 +$input\xA0 "));
Expect.equals(expected, double.parse("+$input\xA0 "));
Expect.equals(expected, double.parse("\u205F $input\u205F "));
- Expect.equals(expected, double.parse(" \u180E$input"));
Expect.equals(expected, double.parse("$input \u2006"));
Expect.equals(expected, double.parse("\u1680 +$input\u1680 "));
Expect.equals(-expected, double.parse("-$input"));

Powered by Google App Engine
This is Rietveld 408576698