Skip to content

Commit

Permalink
test: use common.PIPE in simple/test-cluster-eaccess
Browse files Browse the repository at this point in the history
PR-URL: node-forward/node#50
Reviewed-By: Ben Noordhuis <[email protected]>
  • Loading branch information
rvagg authored and bnoordhuis committed Nov 5, 2014
1 parent 9fb7aee commit b9cecc3
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions test/simple/test-cluster-eaccess.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,13 @@
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE.


var common = require('../common');
var assert = require('assert');
var cluster = require('cluster');
var path = require('path');
var fs = require('fs');
var net = require('net');

var socketPath = path.join(common.fixturesDir, 'socket-path');
var socketPath = common.PIPE;

if (cluster.isMaster) {
var worker = cluster.fork();
Expand Down

0 comments on commit b9cecc3

Please sign in to comment.