fix tests in Firefox

This commit is contained in:
Matias Alejo Garcia 2014-12-02 18:27:48 -03:00
commit 44a94f97ea
3 changed files with 2 additions and 6 deletions

View file

@ -16,7 +16,7 @@ describe('http utils', function() {
send: function() {
var self = this;
setTimeout(function() {
self.response = 'test';
self.response = [1,2,3,4];
self.error ? self.onerror() : self.onload();
}, 10);
},