Skip to content
This repository has been archived by the owner on Feb 12, 2024. It is now read-only.

Commit

Permalink
fix port conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
daviddias committed Jun 6, 2016
1 parent 903022c commit deb75c8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gulpfile.js
Expand Up @@ -23,7 +23,7 @@ gulp.task('libnode:start', (done) => {
parallel([
(cb) => startNode(7, cb),
(cb) => startNode(8, cb),
(cb) => startNode(9, cb)
(cb) => startNode(13, cb)
], done)
})

Expand Down
2 changes: 1 addition & 1 deletion test/core/both/test-bitswap.js
Expand Up @@ -110,7 +110,7 @@ describe('bitswap', () => {
let node
series([
// 0. Start node
(cb) => addNode(9, (err, _ipfs) => {
(cb) => addNode(13, (err, _ipfs) => {
node = _ipfs
cb(err)
}),
Expand Down

0 comments on commit deb75c8

Please sign in to comment.