Skip to content

Commit

Permalink
Don't use nodegit-papandreou.
Browse files Browse the repository at this point in the history
  • Loading branch information
msiebuhr committed Sep 8, 2014
1 parent 9bab354 commit 25317fb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/GitFakeFs.js
Original file line number Diff line number Diff line change
@@ -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'),
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand Down
4 changes: 2 additions & 2 deletions test/GitIndexEntry.js
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down Expand Up @@ -52,4 +52,4 @@ describe('GitIndexEntry', function () {
expect(find('/subdir/stagedFileInSubdir.txt').name, 'to equal', 'stagedFileInSubdir.txt');
});
});
});
});

0 comments on commit 25317fb

Please sign in to comment.