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

Unified Diff: tests/compiler/dart2js_extra/int_index_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
Index: tests/compiler/dart2js_extra/int_index_test.dart
diff --git a/tests/compiler/dart2js_extra/int_index_test.dart b/tests/compiler/dart2js_extra/int_index_test.dart
index 8e90b2c1c50b113b86f55956b8ddeef4d84f76de..269124ceb5bcfca79aea41ca3ab4396147b2d67d 100644
--- a/tests/compiler/dart2js_extra/int_index_test.dart
+++ b/tests/compiler/dart2js_extra/int_index_test.dart
@@ -4,10 +4,10 @@
main() {
var a = [0, 1];
- a[1.2]; // /// 01: runtime error
- a[1.2] = 4; // /// 02: runtime error
- checkIndex(a, 1.4); /// 03: runtime error
- checkIndexedAssignment(a, 1.4); /// 04: runtime error
+ a[1.2]; // //# 01: runtime error
+ a[1.2] = 4; // //# 02: runtime error
+ checkIndex(a, 1.4); //# 03: runtime error
+ checkIndexedAssignment(a, 1.4); //# 04: runtime error
checkIndex(a, 0);
checkIndexedAssignment(a, 0);
}

Powered by Google App Engine
This is Rietveld 408576698