Skip to content

Commit 7774121

Browse files
mnordinekevmoo
authored andcommitted
Fix typos (#287)
1 parent 3781798 commit 7774121

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/request_test.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ void main() {
248248
equals('application/json; charset=iso-8859-1'));
249249
});
250250

251-
test("doen't have its charset overridden by setting bodyFields", () {
251+
test("doesn't have its charset overridden by setting bodyFields", () {
252252
var request = http.Request('POST', dummyUrl);
253253
request.headers['Content-Type'] =
254254
'application/x-www-form-urlencoded; charset=iso-8859-1';
@@ -257,7 +257,7 @@ void main() {
257257
equals('application/x-www-form-urlencoded; charset=iso-8859-1'));
258258
});
259259

260-
test("doen't have its charset overridden by setting body", () {
260+
test("doesn't have its charset overridden by setting body", () {
261261
var request = http.Request('POST', dummyUrl);
262262
request.headers['Content-Type'] = 'application/json; charset=iso-8859-1';
263263
request.body = '{"hello": "world"}';

0 commit comments

Comments
 (0)