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

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

Issue 12328104: Change new List(n) to return fixed length list. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Merge to head. Created 7 years, 10 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/standalone/io/socket_exception_test.dart
diff --git a/tests/standalone/io/socket_exception_test.dart b/tests/standalone/io/socket_exception_test.dart
index 7624ac72ee12d627aefb6df4c44c8a4e6923fb35..f2fec68924510ac6c1931122b1dd6e6038e430a5 100644
--- a/tests/standalone/io/socket_exception_test.dart
+++ b/tests/standalone/io/socket_exception_test.dart
@@ -87,7 +87,7 @@ class SocketExceptionTest {
Expect.isFalse(exceptionCaught);
Expect.isFalse(wrongExceptionCaught);
try {
- List<int> buffer = new List<int>.fixedLength(10);
+ List<int> buffer = new List<int>(10);
client.add(buffer);
} on StateError catch (ex) {
exceptionCaught = true;
@@ -121,7 +121,7 @@ class SocketExceptionTest {
});
Socket.connect("127.0.0.1", server.port).then((client) {
client.listen((data) {}, onDone: server.close);
- client.add(new List.fixedLength(1024 * 1024, fill: 0));
+ client.add(new List.filled(1024 * 1024, 0));
client.destroy();
});
});
@@ -143,7 +143,7 @@ class SocketExceptionTest {
Expect.equals(SIZE, count);
server.close();
});
- client.add(new List.fixedLength(SIZE, fill: 0));
+ client.add(new List.filled(SIZE, 0));
client.close();
// Start piping now.
completer.complete(null);
@@ -174,7 +174,7 @@ class SocketExceptionTest {
Expect.isTrue(errors <= 1);
server.close();
});
- client.add(new List.fixedLength(SIZE, fill: 0));
+ client.add(new List.filled(SIZE, 0));
// Destroy other socket now.
completer.complete(null);
var port = new ReceivePort();
@@ -199,7 +199,7 @@ class SocketExceptionTest {
Socket.connect("127.0.0.1", server.port).then((client) {
const int SIZE = 1024 * 1024;
int errors = 0;
- client.add(new List.fixedLength(SIZE, fill: 0));
+ client.add(new List.filled(SIZE, 0));
client.close();
client.done.catchError((error) {
server.close();

Powered by Google App Engine
This is Rietveld 408576698