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); |
}); |