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

Unified Diff: tests/corelib/string_trimlr_test.dart

Issue 2765893003: Fix warnings_checker.dart handling of multitests (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
« no previous file with comments | « tests/corelib/string_from_environment3_test.dart ('k') | tests/corelib/symbol_operator_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/corelib/string_trimlr_test.dart
diff --git a/tests/corelib/string_trimlr_test.dart b/tests/corelib/string_trimlr_test.dart
index fb834939692fcf8abafbc926db76efa1aef892f0..90eb02ddd4eca0eb61a457f8eee1c68e8cbfa691 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
}
« no previous file with comments | « tests/corelib/string_from_environment3_test.dart ('k') | tests/corelib/symbol_operator_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698