Skip to content

Commit

Permalink
Merge pull request #222 from nkringle/patch-1
Browse files Browse the repository at this point in the history
Fixes linting errors
  • Loading branch information
marcells authored May 1, 2020
2 parents e5478ff + afe0265 commit 26d15c3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/services/Drone.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ describe('Drone service', function () {
createDroneBuildEvent('branch2', 'pull_request')
])
);
droneService = new (require('../../app/services/Drone'));
})
droneService = new (require('../../app/services/Drone'))();
});

afterEach(function () {
nock.cleanAll()
})
nock.cleanAll();
});

it('should filter out no builds when no branch or event', function (done) {
droneService.configure({
Expand Down

0 comments on commit 26d15c3

Please sign in to comment.