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

Unified Diff: tests/standalone/io/chunked_stream_test.dart

Issue 11783009: Big merge from experimental to bleeding edge. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 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/lib/math/math_test.dart ('k') | tests/standalone/io/dart_std_io_pipe_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/io/chunked_stream_test.dart
diff --git a/tests/standalone/io/chunked_stream_test.dart b/tests/standalone/io/chunked_stream_test.dart
index 9b4d00cf44bd58016171ec6a95c671d1fe70d0b0..2f343786db7abb5e0d14a8b19e093532d88910f5 100644
--- a/tests/standalone/io/chunked_stream_test.dart
+++ b/tests/standalone/io/chunked_stream_test.dart
@@ -54,7 +54,7 @@ void test1() {
}
var _16k = 1024 * 16;
- var data = new List<int>(_16k);
+ var data = new List<int>.fixedLength(_16k);
for (int i = 0; i < _16k; i++) { data[i] = i % 256; }
void testDone(int byteCount) {
« no previous file with comments | « tests/lib/math/math_test.dart ('k') | tests/standalone/io/dart_std_io_pipe_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698