remove debugging lines from URL tests

This commit is contained in:
Joe Fleming 2014-09-19 10:48:15 -07:00
parent f163fce4f0
commit 941b4b5692

View file

@ -214,7 +214,6 @@ define(function (require) {
throw new Error('this should not run');
} catch (err) {
expect(err).to.be.an(Error);
console.log(err.message);
expect(err.message).to.match(/replace_me/);
}
});
@ -228,7 +227,6 @@ define(function (require) {
throw new Error('this should not run');
} catch (err) {
expect(err).to.be.an(Error);
console.log(err.message);
expect(err.message).to.match(/replace_me\|number/);
}
});