Skip to content

Commit

Permalink
strict equal
Browse files Browse the repository at this point in the history
  • Loading branch information
binarykitchen committed Apr 1, 2013
1 parent 77c822b commit 60840a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/basics.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ module.exports = testCase({

t.strictEqual(code, 1, 'avconv did nothing');
t.notEqual(stdout, "", 'stdout is not empty and contains a warning about the wrong parameter');
t.equal(stderr, "", 'stderr is still empty');
t.strictEqual(stderr, "", 'stderr is still empty');
t.done();
});
}
Expand All @@ -62,7 +62,7 @@ module.exports = testCase({

t.strictEqual(code, 0, 'avconv returned help');
t.notEqual(stdout, "", 'stdout contains help');
t.equal(stderr, "", 'stderr is still empty');
t.strictEqual(stderr, "", 'stderr is still empty');
t.done();
});
}
Expand Down

0 comments on commit 60840a0

Please sign in to comment.