Skip to content

Commit 8e69bf6

Browse files
Thomas Sileghemshinnn
authored andcommitted
test: fix path separator issue on windows
1 parent 039a2e5 commit 8e69bf6

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# bin-wrapper [![Build Status](http://img.shields.io/travis/kevva/bin-wrapper.svg?style=flat)](https://travis-ci.org/kevva/bin-wrapper)
1+
# bin-wrapper [![Build Status](https://travis-ci.org/kevva/bin-wrapper.svg?branch=master)](https://travis-ci.org/kevva/bin-wrapper)
22

33
> Binary wrapper that makes your programs seamlessly available as local dependencies
44

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)