Skip to content

Commit

Permalink
test: remove duplicate fork module import
Browse files Browse the repository at this point in the history
`fork` is imported twice in a row. Remove duplication.

PR-URL: #4634
Reviewed-By: Johan Bergström <bugs@bergstroem.nu>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Brian White <mscdex@mscdex.net>
Reviewed-By: Michaël Zasso <mic.besace@gmail.com>
  • Loading branch information
Trott authored and Myles Borins committed Jan 12, 2016
1 parent ffb7deb commit ea6e26d
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion test/parallel/test-child-process-fork-close.js
@@ -1,7 +1,6 @@
'use strict';
var assert = require('assert'),
common = require('../common'),
fork = require('child_process').fork,
fork = require('child_process').fork;

var cp = fork(common.fixturesDir + '/child-process-message-and-exit.js');
Expand Down

0 comments on commit ea6e26d

Please sign in to comment.