Skip to content

Commit

Permalink
x
Browse files Browse the repository at this point in the history
  • Loading branch information
rlidwka committed Aug 19, 2020
1 parent f14182b commit 5ded9c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/pipeline.js
Original file line number Diff line number Diff line change
Expand Up @@ -137,9 +137,9 @@ describe('pipeline', function () {
.expect(/^211 .*? a$/)
.then(() => { assert.deepEqual(log, [ 'start a', 'stop a', 'start b' ]); })
.end()
.then(() => delay(10))
.then(() => delay(20))
.then(() => { close_fn(); })
.then(() => delay(10))
.then(() => delay(20))
.then(() => { assert.deepEqual(log, [ 'start a', 'stop a', 'start b', 'stop b' ]); });
});

Expand Down

0 comments on commit 5ded9c5

Please sign in to comment.