Skip to content

Commit 3e73eb7

Browse files
author
Thomas Sileghem
committed
test: fix path separator issue on windows
1 parent 039a2e5 commit 3e73eb7

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)