From 6537fd4b55a5d8c8ec8100e23dbf76052104b89a Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Tue, 2 Jun 2015 18:02:48 -0700 Subject: [PATCH] test: remove TODO It's not clear what additional tests are wanted. The current malformed URL test seems adequate. PR-URL: https://github.com/nodejs/io.js/pull/1875 Reviewed-By: Colin Ihrig Reviewed-By: Evan Lucas --- test/parallel/test-http-malformed-request.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/parallel/test-http-malformed-request.js b/test/parallel/test-http-malformed-request.js index 5f65113afd4fc0..c83aeca9b943fa 100644 --- a/test/parallel/test-http-malformed-request.js +++ b/test/parallel/test-http-malformed-request.js @@ -28,8 +28,6 @@ server.on('listening', function() { c.write('GET /hello?foo=%99bar HTTP/1.1\r\n\r\n'); c.end(); }); - - // TODO add more! }); process.on('exit', function() {