Commit 6777b15b 6777b15bdc25344fde5cade9fe320b39c80654e6 by Mickaël Andrieu

Renamed output variable name

From constructor to constructorName because it's a string which is
returned and not a function
1 parent 511f2eb1
......@@ -857,7 +857,7 @@ Tester.prototype.assertInstanceOf = function assertInstanceOf(subject, construct
standard: f('Subject is instance of: "%s"', constructor.name),
values: {
subject: subject,
constructor: constructor.name,
constructorName: constructor.name,
}
});
};
......