diff --git a/lib/GitFakeFs.js b/lib/GitFakeFs.js index 88cd483..571baa9 100644 --- a/lib/GitFakeFs.js +++ b/lib/GitFakeFs.js @@ -1,7 +1,7 @@ var Path = require('path'), util = require('util'), async = require('async'), - nodeGit = require('nodegit-papandreou'), + nodeGit = require('nodegit'), _ = require('underscore'), passError = require('passerror'), memoizeAsync = require('memoizeasync'), diff --git a/package.json b/package.json index dfda56c..ee657bd 100644 --- a/package.json +++ b/package.json @@ -30,7 +30,7 @@ "createerror": "=0.4.1", "memoizeasync": "=0.3.1", "ncp": "=0.4.2", - "nodegit-papandreou": "=0.1.0patch3", + "nodegit": "=0.1.4", "passerror": "0.0.2", "underscore": "=1.5.2" } diff --git a/test/GitIndexEntry.js b/test/GitIndexEntry.js index eebecbd..163361b 100644 --- a/test/GitIndexEntry.js +++ b/test/GitIndexEntry.js @@ -3,7 +3,7 @@ var expect = require('unexpected'), Path = require('path'), fs = require('fs'), GitIndexEntry = require('../lib/GitIndexEntry'), - nodeGit = require('nodegit-papandreou'); + nodeGit = require('nodegit'); describe('GitIndexEntry', function () { var pathToTestRepo = Path.resolve(__dirname, 'testRepo.git'); @@ -52,4 +52,4 @@ describe('GitIndexEntry', function () { expect(find('/subdir/stagedFileInSubdir.txt').name, 'to equal', 'stagedFileInSubdir.txt'); }); }); -}); \ No newline at end of file +});