Skip to content
This repository has been archived by the owner on Mar 20, 2020. It is now read-only.

Commit

Permalink
Gihub tests - naming convention.
Browse files Browse the repository at this point in the history
  • Loading branch information
radekk committed Jul 1, 2016
1 parent 36d6c74 commit 11e1431
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/src/monitors/github/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ describe('Monitors', () => {
};
const spy = chai.spy(cb);

monitor(monitorParams, spy);
monitor(context, spy);
chai.expect(spy).to.be.called(1);
});

Expand All @@ -45,7 +45,7 @@ describe('Monitors', () => {
};
const spy = chai.spy(cb);

monitor(monitorParams, spy);
monitor(context, spy);
chai.expect(spy).to.be.called(1);
});

Expand All @@ -56,7 +56,7 @@ describe('Monitors', () => {
};
const spy = chai.spy(cb);

monitor(monitorParams, spy);
monitor(context, spy);
chai.expect(spy).to.be.called(1);
});
})
Expand Down

0 comments on commit 11e1431

Please sign in to comment.