Skip to content
This repository has been archived by the owner on Feb 18, 2021. It is now read-only.

Commit

Permalink
test/hyperbahn-client/hostports: stop putting the string "not ok" in …
Browse files Browse the repository at this point in the history
…descriptions
  • Loading branch information
Joshua T Corbin committed Nov 5, 2015
1 parent e7605d8 commit c6d3ced
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/hyperbahn-client/hostports.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}
Expand Down Expand Up @@ -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();
}
Expand Down

0 comments on commit c6d3ced

Please sign in to comment.