diff --git a/package.json b/package.json index 77d61abdc..c97ff3221 100644 --- a/package.json +++ b/package.json @@ -8,8 +8,8 @@ "version": "0.22.2" }, "libssh2": { - "url": "http://www.libssh2.org/download/libssh2-1.5.0.tar.gz", - "version": "1.5.0" + "url": "http://www.libssh2.org/download/libssh2-1.4.3.tar.gz", + "version": "1.4.3" }, "http_parser": { "url": "https://github.com/joyent/http-parser/archive/v2.4.2.tar.gz", diff --git a/test/tests/tree_entry.js b/test/tests/tree_entry.js index d8769cbd9..bfc32417d 100644 --- a/test/tests/tree_entry.js +++ b/test/tests/tree_entry.js @@ -48,7 +48,7 @@ describe("TreeEntry", function() { it("provides the full path", function() { return this.commit.getEntry("test/raw-commit.js") .then(function(entry) { - assert.equal(entry.path(), "test/raw-commit.js"); + assert.equal(entry.path(), path.normalize("test/raw-commit.js")); }); });