test: remove deprecated error logging

common.error() is just deprecated util.error() renamed.
Remove calls to it and some other extraneous console logging
in tests.

PR-URL: https://github.com/nodejs/node/pull/3079
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
This commit is contained in:
Rich Trott 2015-09-26 15:00:51 -07:00
parent a334ddc467
commit 099cfbc58c
19 changed files with 2 additions and 135 deletions

View file

@ -31,7 +31,6 @@ server.listen(common.PORT, function() {
res.on('data', function(chunk) {
response += chunk;
});
common.error('Got /hello response');
});
});