Skip to content

Commit e3115ff

Browse files
committed
update test/double_end.js to use path.join for cross-platform compatibility see: #314 (comment)
1 parent eb30f50 commit e3115ff

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/double_end.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
var test = require('tap').test;
2+
var path = require('path');
23
var concat = require('concat-stream');
34
var spawn = require('child_process').spawn;
45

56
test(function (t) {
67
t.plan(2);
7-
var ps = spawn(process.execPath, [ __dirname + '/double_end/double.js' ]);
8+
var ps = spawn(process.execPath, [path.join(__dirname, 'double_end', 'double.js')]);
89
ps.on('exit', function (code) {
910
t.equal(code, 1);
1011
});

0 commit comments

Comments
 (0)