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

Unified Diff: tests/corelib/string_trimlr_test.dart

Issue 2765693002: Update all tests (Closed)
Patch Set: 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/corelib/string_trimlr_test.dart
diff --git a/tests/corelib/string_trimlr_test.dart b/tests/corelib/string_trimlr_test.dart
index 2cf4a976da900b2259958d44c6f1cbc58c97e70e..2e34488cadbcdf8ef76455dd9bafea89af95b5a1 100644
--- a/tests/corelib/string_trimlr_test.dart
+++ b/tests/corelib/string_trimlr_test.dart
@@ -100,12 +100,12 @@ main() {
// string_trimlr_test/01 fails on these engines.
// Should be fixed in tip-of-tree V8 per 2014-02-10.
var s200B = new String.fromCharCode(0x200B);
- Expect.identical(s200B, s200B.trimLeft()); /// 01: ok
- Expect.identical(s200B, s200B.trimRight()); /// 01: ok
+ Expect.identical(s200B, s200B.trimLeft()); //# 01: ok
+ Expect.identical(s200B, s200B.trimRight()); //# 01: ok
// U+180E ceased to be whitespace in Unicode version 6.3.0
// string_trimlr_test/02 fails on implementations using earlier versions.
var s180E = new String.fromCharCode(0x180E);
- Expect.identical(s180E, s180E.trimLeft()); /// 02: ok
- Expect.identical(s180E, s180E.trimRight()); /// 02: ok
+ Expect.identical(s180E, s180E.trimLeft()); //# 02: ok
+ Expect.identical(s180E, s180E.trimRight()); //# 02: ok
}

Powered by Google App Engine
This is Rietveld 408576698