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

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

Issue 11659009: Reapply "Fix URI encoding/decoding of + and space"" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Updated tests Created 8 years 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 | pkg/oauth2/test/authorization_code_grant_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/http/test/http_test.dart
diff --git a/pkg/http/test/http_test.dart b/pkg/http/test/http_test.dart
index 7e6e7ef6ac91569bf45789ee4d5ae5de78ba323b..0aab493ecbe41f4e63a2c5d0f4ce7a5d729c98e5 100644
--- a/pkg/http/test/http_test.dart
+++ b/pkg/http/test/http_test.dart
@@ -56,11 +56,11 @@ main() {
'content-type': [
'application/x-www-form-urlencoded; charset=UTF-8'
],
- 'content-length': ['42'],
+ 'content-length': ['40'],
'x-random-header': ['Value'],
'x-other-header': ['Other Value']
},
- 'body': 'some-field=value&other-field=other%20value'
+ 'body': 'some-field=value&other-field=other+value'
})));
}), completes);
});
@@ -101,11 +101,11 @@ main() {
'content-type': [
'application/x-www-form-urlencoded; charset=UTF-8'
],
- 'content-length': ['42'],
+ 'content-length': ['40'],
'x-random-header': ['Value'],
'x-other-header': ['Other Value']
},
- 'body': 'some-field=value&other-field=other%20value'
+ 'body': 'some-field=value&other-field=other+value'
})));
}), completes);
});
« no previous file with comments | « no previous file | pkg/oauth2/test/authorization_code_grant_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698