minor syntax fix
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -851,7 +851,7 @@ Tester.prototype.assertInstanceOf = function assertInstanceOf(subject, className | ... | @@ -851,7 +851,7 @@ Tester.prototype.assertInstanceOf = function assertInstanceOf(subject, className |
851 | "use strict"; | 851 | "use strict"; |
852 | var actual = subject instanceof className; | 852 | var actual = subject instanceof className; |
853 | return this.assert(utils.equals(actual, true), message, { | 853 | return this.assert(utils.equals(actual, true), message, { |
854 | type: "assertType", | 854 | type: "assertInstanceOf", |
855 | standard: f('Subject is an instance of: "%s"', className), | 855 | standard: f('Subject is an instance of: "%s"', className), |
856 | values: { | 856 | values: { |
857 | subject: subject, | 857 | subject: subject, | ... | ... |
-
Please register or sign in to post a comment