Skip to content

Commit 6967d37

Browse files
author
John Haley
committed
Fix path issue on windows in tests
1 parent f73bf83 commit 6967d37

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/tests/tree_entry.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ describe("TreeEntry", function() {
4848
it("provides the full path", function() {
4949
return this.commit.getEntry("test/raw-commit.js")
5050
.then(function(entry) {
51-
assert.equal(entry.path(), "test/raw-commit.js");
51+
assert.equal(entry.path(), path.normalize("test/raw-commit.js"));
5252
});
5353
});
5454

0 commit comments

Comments
 (0)