We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eec5b0a commit 0485647Copy full SHA for 0485647
1 file changed
test/tests/diff.js
@@ -38,13 +38,15 @@ describe("Diff", function() {
38
Diff.treeToWorkdirWithIndex(
39
test.repository,
40
test.masterCommitTree,
41
- normalizeOptions({ flags: Diff.OPTION.INCLUDE_UNTRACKED }, NodeGit.DiffOptions)
+ normalizeOptions({
42
+ flags: Diff.OPTION.INCLUDE_UNTRACKED
43
+ }, NodeGit.DiffOptions)
44
)
45
.then(function(workdirDiff) {
46
test.workdirDiff = workdirDiff;
47
done();
48
});
- })
49
+ });
50
51
52
0 commit comments