fixed linting issue
Showing
1 changed file
with
1 additions
and
3 deletions
... | @@ -688,9 +688,7 @@ Tester.prototype.assertRaises = | ... | @@ -688,9 +688,7 @@ Tester.prototype.assertRaises = |
688 | Tester.prototype.assertRaise = | 688 | Tester.prototype.assertRaise = |
689 | Tester.prototype.assertThrows = function assertRaises(fn, args, message) { | 689 | Tester.prototype.assertThrows = function assertRaises(fn, args, message) { |
690 | "use strict"; | 690 | "use strict"; |
691 | var thrown = false, | 691 | var error, thrown = false, context = { |
692 | error = undefined, | ||
693 | context = { | ||
694 | type: "assertRaises", | 692 | type: "assertRaises", |
695 | standard: "Function raises an error" | 693 | standard: "Function raises an error" |
696 | }; | 694 | }; | ... | ... |
-
Please register or sign in to post a comment