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

Unified Diff: pkg/shelf/test/test_util.dart

Issue 227563010: pkg/shelf: case-insensitive headers, cleaner Request ctor, a lot more tests (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 8 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
« pkg/shelf/test/shelf_io_test.dart ('K') | « pkg/shelf/test/shelf_io_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/shelf/test/test_util.dart
diff --git a/pkg/shelf/test/test_util.dart b/pkg/shelf/test/test_util.dart
index bc1793b7f97dafd892774ab6a97cc9c41ce8be86..66c776e455a8b6da6cbfca850753bcf3bf552f20 100644
--- a/pkg/shelf/test/test_util.dart
+++ b/pkg/shelf/test/test_util.dart
@@ -28,5 +28,4 @@ Future<Response> asyncHandler(Request request) =>
Future<Response> makeSimpleRequest(Handler handler) =>
syncFuture(() => handler(_request));
-final _request = new Request('/', '', 'GET', '', '1.1',
- Uri.parse('http://localhost/'), {});
+final _request = new Request('1.1', 'GET', {}, Uri.parse('http://localhost/'));
« pkg/shelf/test/shelf_io_test.dart ('K') | « pkg/shelf/test/shelf_io_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698