Commit 209e57e9 authored by neis's avatar neis Committed by Commit bot

[test] Fix typo in assertInstanceOf in mjsunit.js.

R=adamk@chromium.org, marja@chromium.org
BUG=

Review-Url: https://chromiumcodereview.appspot.com/2436073002
Cr-Commit-Position: refs/heads/master@{#40482}
parent 9e6bfbd3
......@@ -399,7 +399,7 @@ var assertMatches;
if (typeof actualConstructor === "function") {
actualTypeName = actualConstructor.name || String(actualConstructor);
}
failWithmessage("Object <" + PrettyPrint(obj) + "> is not an instance of <" +
failWithMessage("Object <" + PrettyPrint(obj) + "> is not an instance of <" +
(type.name || type) + ">" +
(actualTypeName ? " but of <" + actualTypeName + ">" : ""));
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment