2
0
mirror of https://github.com/tenrok/axios.git synced 2026-05-21 13:24:11 +03:00

Updating test for adapter

This commit is contained in:
38elements
2017-01-30 13:49:50 +09:00
parent 68ec2abc4a
commit f034c56466
+1 -1
View File
@@ -5,7 +5,7 @@ describe('adapter', function () {
var called = false;
axios('/foo', {
adapter: function (resolve, reject, config) {
adapter: function (config) {
called = true;
}
});