From 11e143132110ec4e0e73f23c6a9bde19fdcc7852 Mon Sep 17 00:00:00 2001 From: radekk Date: Sat, 2 Jul 2016 00:50:38 +0200 Subject: [PATCH] Gihub tests - naming convention. --- test/src/monitors/github/index.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/src/monitors/github/index.js b/test/src/monitors/github/index.js index cf69ed5..fe15185 100644 --- a/test/src/monitors/github/index.js +++ b/test/src/monitors/github/index.js @@ -32,7 +32,7 @@ describe('Monitors', () => { }; const spy = chai.spy(cb); - monitor(monitorParams, spy); + monitor(context, spy); chai.expect(spy).to.be.called(1); }); @@ -45,7 +45,7 @@ describe('Monitors', () => { }; const spy = chai.spy(cb); - monitor(monitorParams, spy); + monitor(context, spy); chai.expect(spy).to.be.called(1); }); @@ -56,7 +56,7 @@ describe('Monitors', () => { }; const spy = chai.spy(cb); - monitor(monitorParams, spy); + monitor(context, spy); chai.expect(spy).to.be.called(1); }); })