From c6d3ceda0397b37f72b4879520ce528a0596153e Mon Sep 17 00:00:00 2001 From: Joshua T Corbin Date: Wed, 4 Nov 2015 17:16:27 -0800 Subject: [PATCH] test/hyperbahn-client/hostports: stop putting the string "not ok" in descriptions --- test/hyperbahn-client/hostports.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/hyperbahn-client/hostports.js b/test/hyperbahn-client/hostports.js index cd44d0b..be85961 100644 --- a/test/hyperbahn-client/hostports.js +++ b/test/hyperbahn-client/hostports.js @@ -73,7 +73,7 @@ function runTests(HyperbahnCluster) { assert.end(err); } assert.ok(res, 'should be a result'); - assert.ok(!res.ok, 'result should be not ok'); + assert.ok(!res.ok, 'result should not be ok'); assert.equals(res.body.message, 'no peer available for matt', 'error message as expected'); assert.end(); } @@ -156,7 +156,7 @@ function runTests(HyperbahnCluster) { if (err) { assert.end(err); } - assert.ok(!res.ok, 'should be not ok'); + assert.ok(!res.ok, 'should not be ok'); assert.equals(res.body.message, 'invalid service name: ', 'error message as expected'); assert.end(); }