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

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

Issue 10454034: Don't use Uint32List in IO test (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 7 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/io/http_head_test.dart
diff --git a/tests/standalone/io/http_head_test.dart b/tests/standalone/io/http_head_test.dart
index 56cc54fb51fcd3b448ceda532113b898b1eb8b8c..84e03e85c9468e2e9ddea3d80dd0f1de990d16f2 100644
--- a/tests/standalone/io/http_head_test.dart
+++ b/tests/standalone/io/http_head_test.dart
@@ -18,7 +18,7 @@ void testHEAD(int totalConnections) {
(request) => request.path == "/test200",
(HttpRequest request, HttpResponse response) {
response.contentLength = 200;
- List<int> data = new Uint32List(200);
+ List<int> data = new List<int>(200);
response.outputStream.write(data);
response.outputStream.close();
});
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698