whoops missed some semicolons

This commit is contained in:
Riley Davis
2016-11-07 12:54:04 -07:00
parent 946f621fc4
commit 601d36f2df
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -9,8 +9,8 @@ describe('Setting: model', () => {
beforeEach(() => {
const defaults = {id: 1, moderation: 'pre'};
return Setting.update({id: '1'}, {$setOnInsert: defaults}, {upsert: true})
})
return Setting.update({id: '1'}, {$setOnInsert: defaults}, {upsert: true});
});
describe('#getSettings()', () => {
it('should have a moderation field defined', () => {
+1 -1
View File
@@ -27,7 +27,7 @@ describe('GET /settings', () => {
expect(res.body).to.have.property('moderation');
expect(res.body.moderation).to.equal('pre');
done(err);
})
});
});
});