Skip to content

Commit

Permalink
Upgrade: Update now-and-later
Browse files Browse the repository at this point in the history
  • Loading branch information
phated committed Jun 27, 2016
1 parent 4932102 commit f9b66e9
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@
"async-done": "~0.4.0",
"async-settle": "~0.2.0",
"lodash": "~2.4.1",
"now-and-later": "0.0.4"
"now-and-later": "0.0.5"
}
}
2 changes: 1 addition & 1 deletion test/parallel.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ describe('parallel', function(){
before: function(storage){
expect(storage).to.equal(arr);
},
after: function(storage){
after: function(result, storage){
expect(storage).to.equal(arr);
}
})(function(error, results){
Expand Down
2 changes: 1 addition & 1 deletion test/series.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ describe('series', function(){
before: function(storage){
expect(storage).to.equal(arr);
},
after: function(storage){
after: function(result, storage){
expect(storage).to.equal(arr);
}
})(function(error, results){
Expand Down
2 changes: 1 addition & 1 deletion test/settleParallel.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ describe('settleParallel', function(){
before: function(storage){
expect(storage).to.equal(arr);
},
after: function(storage){
after: function(result, storage){
expect(storage).to.equal(arr);
}
})(function(error, results){
Expand Down
2 changes: 1 addition & 1 deletion test/settleSeries.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ describe('settleSeries', function(){
before: function(storage){
expect(storage).to.equal(arr);
},
after: function(storage){
after: function(result, storage){
expect(storage).to.equal(arr);
}
})(function(error, results){
Expand Down

0 comments on commit f9b66e9

Please sign in to comment.