Remove several console.log

This commit is contained in:
Matias Pando 2015-01-29 16:44:32 -03:00
commit 68697dc3a7
6 changed files with 2 additions and 13 deletions

View file

@ -1263,7 +1263,7 @@ describe('Identity model', function() {
expect(iden._checkVersion()).to.be.undefined;
expect(iden._checkVersion('0.0.0')).to.be.undefined;
(function() {
console.log('b', iden._checkVersion('9.9.9'));
iden._checkVersion('9.9.9');
}).should.throw('Major difference');
});
});