From 38cfd52c0fd19f36063c69b9ad9718e14d2eb327 Mon Sep 17 00:00:00 2001 From: Alan Plum Date: Thu, 21 Aug 2014 16:42:14 +0200 Subject: [PATCH] Removed redundant potato. --- js/apps/system/users/test/errors.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/apps/system/users/test/errors.js b/js/apps/system/users/test/errors.js index bab4135536..169bd73dbb 100644 --- a/js/apps/system/users/test/errors.js +++ b/js/apps/system/users/test/errors.js @@ -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); }); });