Renamed output variable name
From constructor to constructorName because it's a string which is returned and not a function
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -857,7 +857,7 @@ Tester.prototype.assertInstanceOf = function assertInstanceOf(subject, construct | ... | @@ -857,7 +857,7 @@ Tester.prototype.assertInstanceOf = function assertInstanceOf(subject, construct |
857 | standard: f('Subject is instance of: "%s"', constructor.name), | 857 | standard: f('Subject is instance of: "%s"', constructor.name), |
858 | values: { | 858 | values: { |
859 | subject: subject, | 859 | subject: subject, |
860 | constructor: constructor.name, | 860 | constructorName: constructor.name, |
861 | } | 861 | } |
862 | }); | 862 | }); |
863 | }; | 863 | }; | ... | ... |
-
Please register or sign in to post a comment