Skip to content

Commit

Permalink
update var names
Browse files Browse the repository at this point in the history
  • Loading branch information
mapsam committed Apr 17, 2017
1 parent 9ff75ba commit ee2bf89
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/stream-deserialize.test.js
Expand Up @@ -182,11 +182,11 @@ test('de/serialize: round-trip', function(t) {
});

function makeAssertions() {
before.getInfo(function(err, inInfo) {
before.getInfo(function(err, beforeInfo) {
t.ifError(err);
after.source.getInfo(function(err, outInfo) {
after.source.getInfo(function(err, afterInfo) {
t.ifError(err);
t.deepEqual(outInfo, inInfo, 'input and output info is the same');
t.deepEqual(beforeInfo, afterInfo, 'input and output info is the same');
t.end();
});
});
Expand Down

0 comments on commit ee2bf89

Please sign in to comment.