Skip to content

Commit

Permalink
fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
rafinskipg committed Apr 21, 2015
1 parent a292a0f commit 2e60172
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions test/git_changelog_generate.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -404,6 +404,9 @@ describe('git_changelog_generate.js', function() {
before(function(done) {
this.stream = {
write: sinon.stub(),
end : function(){

},
on: sinon.spy(function(event, callback) {
callback();
})
Expand Down Expand Up @@ -466,6 +469,9 @@ describe('git_changelog_generate.js', function() {
before(function(done) {
this.stream = {
write: sinon.stub(),
end : function(){

},
on: sinon.spy(function(event, callback) {
callback();
})
Expand Down

0 comments on commit 2e60172

Please sign in to comment.