Skip to content

Commit

Permalink
test: fix lint error regarding unused commons const
Browse files Browse the repository at this point in the history
Currently, make lint is failing with the following error:
3:7  error  'common' is assigned a value but never used  no-unused-vars
✖ 1 problem (1 error, 0 warnings)

PR-URL: #9334
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
  • Loading branch information
danbev authored and evanlucas committed Nov 3, 2016
1 parent edd8926 commit 0ab008e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/parallel/test-stream-writableState-ending.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict';

const common = require('../common');
require('../common');

const assert = require('assert');
const stream = require('stream');
Expand Down

0 comments on commit 0ab008e

Please sign in to comment.