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

Commit ec2ba3d

Browse files
richardschneiderdaviddias
authored andcommitted
fix: lint errors
1 parent 7af843f commit ec2ba3d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/ipfs-factory/server-routes.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ module.exports = (http) => {
1818
function spawnNode (repoPath, config) {
1919
ds.spawnNode(repoPath, config, (err, apiAddr) => {
2020
if (err) {
21-
return this.emit('error', err);
21+
return this.emit('error', err)
2222
}
2323
this.emit('fc-node', apiAddr.toString())
2424
})
@@ -27,7 +27,7 @@ module.exports = (http) => {
2727
function dismantle () {
2828
ds.dismantle((err) => {
2929
if (err) {
30-
return this.emit('error', err);
30+
return this.emit('error', err)
3131
}
3232
this.emit('fc-nodes-shutdown')
3333
})

0 commit comments

Comments
 (0)