Skip to content

Commit

Permalink
Use object shorthand for properties (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
LinusU committed Apr 26, 2020
1 parent c17f8b7 commit 5b3dc00
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mqemitter.js
Expand Up @@ -21,7 +21,7 @@ function MQEmitter (opts) {
this._messageCallbacks = []
this._parallel = fastparallel({
results: false,
released: released
released
})

this.concurrency = opts.concurrency || 0
Expand Down
2 changes: 1 addition & 1 deletion test/test.js
Expand Up @@ -5,7 +5,7 @@ const mq = require('../')

require('../abstractTest')({
builder: mq,
test: test
test
})

test('queue concurrency', function (t) {
Expand Down

0 comments on commit 5b3dc00

Please sign in to comment.