Updating test for adapter

This commit is contained in:
38elements 2017-01-30 13:49:50 +09:00
parent 68ec2abc4a
commit f034c56466

View File

@ -5,7 +5,7 @@ describe('adapter', function () {
var called = false;
axios('/foo', {
adapter: function (resolve, reject, config) {
adapter: function (config) {
called = true;
}
});