diff --git a/tests/basics.js b/tests/basics.js index bf23937..b0a9aa6 100644 --- a/tests/basics.js +++ b/tests/basics.js @@ -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(); }); } @@ -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(); }); }