Skip to content

Commit

Permalink
test: fix path separator issue on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Sileghem authored and shinnn committed Apr 30, 2016
1 parent 039a2e5 commit 8e69bf6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# bin-wrapper [![Build Status](http://img.shields.io/travis/kevva/bin-wrapper.svg?style=flat)](https://travis-ci.org/kevva/bin-wrapper)
# bin-wrapper [![Build Status](https://travis-ci.org/kevva/bin-wrapper.svg?branch=master)](https://travis-ci.org/kevva/bin-wrapper)

> Binary wrapper that makes your programs seamlessly available as local dependencies
Expand Down
2 changes: 1 addition & 1 deletion test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ test('get the binary path', function (t) {
.dest('tmp')
.use('foo');

t.assert(bin.path() === 'tmp/foo', bin.path());
t.assert(bin.path() === path.join('tmp', 'foo'), bin.path());
});

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

0 comments on commit 8e69bf6

Please sign in to comment.