2
0
mirror of https://github.com/tenrok/axios.git synced 2026-06-08 17:22:34 +03:00

Fixes failing tests for the IE8/IE9 capitalized verb bug.

This commit is contained in:
torkvalo
2014-12-10 13:37:11 +01:00
parent 4f34f61b70
commit ecd9f7391c
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -63,7 +63,7 @@ describe('interceptors', function () {
responseText: 'OK'
});
expect(request.method).toBe('post');
expect(request.method).toBe('POST');
expect(request.url).toBe('/bar');
});
});
+1 -1
View File
@@ -21,7 +21,7 @@ describe('options', function () {
}, 'waiting for the request', 100);
runs(function () {
expect(request.method).toBe('get');
expect(request.method).toBe('GET');
});
});