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

Unified Diff: tests/corelib/list_test.dart

Issue 85573002: Update status file for safari bug. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 1 month 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
===================================================================
--- tests/corelib/list_test.dart (revision 30610)
+++ tests/corelib/list_test.dart (working copy)
@@ -497,8 +497,8 @@
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. /// 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.
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