From cd907e6a5f978333a763338a6801495efd38a5b0 Mon Sep 17 00:00:00 2001 From: Ryan Harvey Date: Thu, 20 Jul 2017 14:38:25 -0500 Subject: [PATCH] make test work on all platforms --- test/binCases/config-name/not-found/test.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/binCases/config-name/not-found/test.js b/test/binCases/config-name/not-found/test.js index fbbcdd0854b..d8cb53b704d 100644 --- a/test/binCases/config-name/not-found/test.js +++ b/test/binCases/config-name/not-found/test.js @@ -1,8 +1,7 @@ "use strict"; module.exports = function testAssertions(code, stdout, stderr) { - code.should.be.exactly(255); - + code.should.not.eql(0); stdout.should.be.empty(); stderr[0].should.containEql("Configuration with name \'foo\' was not found."); };