Skip to content
This repository was archived by the owner on Apr 22, 2020. It is now read-only.

Commit ffce0f4

Browse files
authored
Fix lint issues in channel spec
1 parent a957c6b commit ffce0f4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/channel-service.spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ describe('Channels Service', () => {
5959

6060
it('should save a channel', done => {
6161
const mongoose = require('mongoose');
62-
connectToDb('test');
62+
connectToDb('test');
6363
const ChannelEntry = mongoose.model('Channel', require('../data/schema/channel'));
6464
const saveChannel = ChannelService.__get__('saveChannel');
6565

@@ -80,7 +80,7 @@ describe('Channels Service', () => {
8080
done();
8181
});
8282
})
83-
.catch(console.log)
83+
.catch(console.log);
8484
});
8585

8686
// Will reimplement

0 commit comments

Comments
 (0)