Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2017-03-02 05:58:10 +0300
committerAnna Henningsen <anna@addaleax.net>2017-03-06 01:25:43 +0300
commitf69685be65e43e8ba1fa1ea4b18677c83fefa118 (patch)
treea3d83408f4f8cc793b30b2b552d87bd9dd25d073 /test
parent24e6fcce8b61fe3b94dc5d86af0ce15e180a367a (diff)
test: remove obsolete eslint-disable comment
The align-function-arguments custom rule is obsolete and has been removed from the code base. Remove comment that used to disable it for one file. PR-URL: https://github.com/nodejs/node/pull/11643 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com> Reviewed-By: Teddy Katz <teddy.katz@gmail.com>
Diffstat (limited to 'test')
-rw-r--r--test/parallel/test-http-parser-bad-ref.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/test/parallel/test-http-parser-bad-ref.js b/test/parallel/test-http-parser-bad-ref.js
index 97b4685e183..c4ab1db8659 100644
--- a/test/parallel/test-http-parser-bad-ref.js
+++ b/test/parallel/test-http-parser-bad-ref.js
@@ -75,12 +75,10 @@ demoBug('POST /1', '/22 HTTP/1.1\r\n' +
'Content-Length: 4\r\n\r\n' +
'pong');
-/* eslint-disable align-function-arguments */
demoBug('POST /1/22 HTTP/1.1\r\n' +
'Content-Type: tex', 't/plain\r\n' +
'Content-Length: 4\r\n\r\n' +
'pong');
-/* eslint-enable align-function-arguments */
process.on('exit', function() {
assert.strictEqual(2, headersComplete);