Skip to content

Commit a3f6bd4

Browse files
committed
Merge pull request #934 from smith-kyle/remove-console-logs
Removed accidental console logs in index tests
2 parents 9981139 + fda0fc4 commit a3f6bd4

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

test/utils/index_setup.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,18 +45,14 @@ var IndexSetup = {
4545
return repository.getCommit(commitOid).then(function(commit) {
4646
ourCommit = commit;
4747
}).then(function() {
48-
console.log("after creating base commit");
4948
return repository.createBranch(ourBranchName, commitOid)
5049
.then(function(branch) {
51-
console.log("after creating our branch");
5250
ourBranch = branch;
5351
return repository.createBranch(theirBranchName, commitOid);
5452
});
5553
});
5654
})
5755
.then(function(branch) {
58-
console.log("after creating their commit");
59-
6056
theirBranch = branch;
6157
return fse.writeFile(path.join(repository.workdir(), fileName),
6258
baseFileContent + theirFileContent);

0 commit comments

Comments
 (0)