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

Unified Diff: tests/corelib/list_test.dart

Issue 51223004: Mark corelib/list_test/01 as failing on dart2js. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 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/corelib.status ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/corelib/list_test.dart
diff --git a/tests/corelib/list_test.dart b/tests/corelib/list_test.dart
index deb26547a50d483c6711554e3f4eed6c788d1a4a..bdd449a3ee57a0e94f91b738e3137bd7b4cd3e6b 100644
--- a/tests/corelib/list_test.dart
+++ b/tests/corelib/list_test.dart
@@ -498,7 +498,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.
- Expect.throws(() { new List(null); }); // Not null.
+ Expect.throws(() { new List(null); }); // Not null. /// 01: ok
Expect.listEquals([4], new List()..add(4));
Expect.throws(() { new List.filled(0, 42).add(4); }); // Is fixed-length.
Expect.throws(() { new List.filled(-2, 42); }); // Not negative.
« no previous file with comments | « tests/corelib/corelib.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698