Skip to content

Commit

Permalink
Merge pull request #465 from pelias/greenkeeper/tape-5.0.0
Browse files Browse the repository at this point in the history
Update tape to the latest version 🚀
  • Loading branch information
orangejulius authored Sep 15, 2020
2 parents 89eaf8e + 51ba5be commit bde9a8c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"proxyquire": "^2.0.0",
"stream-mock": "^2.0.3",
"tap-spec": "^5.0.0",
"tape": "^4.10.1",
"tape": "^5.0.0",
"temp": "^0.9.0"
},
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion test/streams/documentStream.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ tape( 'documentStream does not set zipcode if zipcode is emptystring', function(
test_stream([input], documentStream, function(err, actual) {
test.equal(actual.length, 1, 'the document should be pushed' );
test.equal(stats.badRecordCount, 0, 'bad record count unchanged');
test.equal(actual[0].getAddress('zip', undefined));
test.equal(actual[0].getAddress('zip'), undefined);
test.end();
});
});
Expand Down

0 comments on commit bde9a8c

Please sign in to comment.