1
0
Fork 0

Removed redundant potato.

This commit is contained in:
Alan Plum 2014-08-21 16:42:14 +02:00
parent c8d1f5f93b
commit 38cfd52c0f
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@
expect(err.stack).to.contain(err.message);
});
it('uses its name in its stack trace', function () {
var err = new UserError('potato');
var err = new UserError();
expect(err.stack).to.contain(name);
});
});