Skip to content

Commit

Permalink
Fix test failure report (test exposing #94)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sandro Santilli committed Nov 13, 2013
1 parent ec3818f commit ebf8f85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/acceptance/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,7 @@ suite('server', function() {
method: 'GET'
},{
}, function(res) {
assert.equal(res.statusCode, 404, res.statusCode + res.statusCode != 200 ? ( ": " + res.body ) : '' );
assert.equal(res.statusCode, 404, res.statusCode + ( res.statusCode != 200 ? ( ": " + res.body ) : '' ));
// TODO: also test that a new request with no overrideDBUser gets permission to access the tile ?
done();
});
Expand Down

0 comments on commit ebf8f85

Please sign in to comment.