Skip to content

Commit 14f8d16

Browse files
committed
Merge pull request #44 from mastilver/fix-windows-test
test: fix path separator issue on windows
2 parents 039a2e5 + 3e73eb7 commit 14f8d16

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ test('get the binary path', function (t) {
6565
.dest('tmp')
6666
.use('foo');
6767

68-
t.assert(bin.path() === 'tmp/foo', bin.path());
68+
t.assert(bin.path() === path.join('tmp', 'foo'), bin.path());
6969
});
7070

7171
test('verify that a binary is working', function (t) {

0 commit comments

Comments
 (0)