Skip to content

Commit

Permalink
Upgrade standard devDependency from ^13.0.1 to ^14.1.0
Browse files Browse the repository at this point in the history
Closes #670
  • Loading branch information
vweevers committed Sep 6, 2019
1 parent c6b7118 commit cd3af83
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion buster.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
var config = module.exports

config['unit'] = {
config.unit = {
environment: 'node',
tests: ['test/*-test.js'],
libs: ['test/common.js']
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"run-parallel": "^1.1.9",
"run-series": "^1.1.8",
"safe-buffer": "^5.1.0",
"standard": "^13.0.1",
"standard": "^14.1.0",
"tape": "^4.7.0",
"trickle": "0.0.2"
},
Expand Down
4 changes: 2 additions & 2 deletions test/read-stream-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ buster.testCase('ReadStream', {
var pauseVerify = function () {
assert.equals(calls, 5, 'stream should still be paused')
rs.resume()
pauseVerify['called'] = true
pauseVerify.called = true
}
var onData = function () {
if (++calls === 5) {
Expand All @@ -44,7 +44,7 @@ buster.testCase('ReadStream', {
}
var verify = function () {
assert.equals(calls, this.sourceData.length, 'onData was used in test')
assert(pauseVerify['called'], 'pauseVerify was used in test')
assert(pauseVerify.called, 'pauseVerify was used in test')
this.verify(rs, done)
}.bind(this)

Expand Down

0 comments on commit cd3af83

Please sign in to comment.