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

Unified Diff: pkg/http/test/mock_client_test.dart

Issue 11348309: Keep around a copy of the http.Request that triggered each Response. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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
Index: pkg/http/test/mock_client_test.dart
diff --git a/pkg/http/test/mock_client_test.dart b/pkg/http/test/mock_client_test.dart
index 7bc39566ff7e780907c0ae8ffb507d8ed68e956d..44d51614f924d658928bf5b975630e134a9221b8 100644
--- a/pkg/http/test/mock_client_test.dart
+++ b/pkg/http/test/mock_client_test.dart
@@ -20,7 +20,7 @@ void main() {
var client = new MockClient((request) {
return new Future.immediate(new http.Response(
JSON.stringify(request.bodyFields), 200,
- headers: {'content-type': 'application/json'}));
+ request: request, headers: {'content-type': 'application/json'}));
});
expect(client.post("http://example.com/foo", fields: {

Powered by Google App Engine
This is Rietveld 408576698