diff --git a/test/detect.js b/test/detect.js index d979d8cc..f2142816 100644 --- a/test/detect.js +++ b/test/detect.js @@ -14,13 +14,13 @@ describe("Codecov", function(){ process.env.TRAVIS = "true"; expect(detect().service).to.eql("travis"); - - process.env.TRAVIS = ""; + + process.env.TRAVIS = ""; }); - + it("can select local git service if no service is found", function(){ expect(detect().commit).to.match(/^\w{40}$/); expect(detect().commit).to.eql(execSync("git rev-parse HEAD || hg id -i --debug | tr -d '+'").toString().trim()); }); - + });