Skip to content

Commit 030f754

Browse files
committed
Removed console.log from amend test
1 parent 7fa34f7 commit 030f754

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

test/tests/commit.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,6 @@ describe("Commit", function() {
176176
return index.writeTree();
177177
})
178178
.then(function(oidResult) {
179-
console.log("Commit to amend tree id: " + oidResult);
180179
treeOid = oidResult;
181180
return NodeGit.Reference.nameToId(repo, "HEAD");
182181
})
@@ -226,7 +225,6 @@ describe("Commit", function() {
226225
})
227226
.then(function(resultOid){
228227
treeOid = resultOid;
229-
console.log("New Tree oid before amend: " + treeOid);
230228
return Promise.all([
231229
repo.getCommit(commitToAmendId),
232230
NodeGit.Signature.create(
@@ -248,7 +246,6 @@ describe("Commit", function() {
248246
var commit = amendInfo[0];
249247
author = amendInfo[1];
250248
committer = amendInfo[2];
251-
//var tree = amendInfo[3];
252249

253250
return commit.amend(
254251
"HEAD",

0 commit comments

Comments
 (0)