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

Unified Diff: tests/corelib_strong/list_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_strong/iterable_return_type_test.dart ('k') | tests/corelib_strong/nan_infinity_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/corelib_strong/list_test.dart
diff --git a/tests/corelib_strong/list_test.dart b/tests/corelib_strong/list_test.dart
index 75d33e98bb07c9b851402b6ab2eabb05bf2102d8..8d6df271327737e0179e6c585493e7b2e350b528 100644
--- a/tests/corelib_strong/list_test.dart
+++ b/tests/corelib_strong/list_test.dart
@@ -582,7 +582,7 @@ class MyFixedList<E> extends ListBase<E> {
void testListConstructor() {
Expect.throws(() { new List(0).add(4); }); // Is fixed-length.
- Expect.throws(() { new List(-2); }); // Not negative. /// 01: ok
+ Expect.throws(() { new List(-2); }); // Not negative. //# 01: ok
Expect.throws(() { new List(null); }); // Not null.
Expect.listEquals([4], new List()..add(4));
Expect.throws(() { new List.filled(0, 42).add(4); }); // Is fixed-length.
« no previous file with comments | « tests/corelib_strong/iterable_return_type_test.dart ('k') | tests/corelib_strong/nan_infinity_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698