[Ivan Diaz] - #8 - Add missing semicolon [skip ci]

This commit is contained in:
Ivan Diaz 2016-02-11 20:29:06 -03:00
parent 2aceef847c
commit 3b67322b80
2 changed files with 3 additions and 3 deletions

View File

@ -17,7 +17,7 @@ module.exports = [
'userId': 12,
'token': 'cc6b4921e6733d6aafe284ec0d7be57e'
}
}
};
}
return response;

View File

@ -12,7 +12,7 @@ let fixtures = (function () {
getAll() {
return fixturesData;
}
}
};
})();
// FIXTURES
@ -24,7 +24,7 @@ _.each(fixtures.getAll(), function (fixture) {
url: 'http://localhost:3000/api/' + fixture.path,
responseTime: fixture.time || 500,
response: function (settings) {
this.responseText = fixture.response(settings.data)
this.responseText = fixture.response(settings.data);
}
});
});