Skip to content
Snippets Groups Projects
Commit 51f0c1da authored by Rick Waldron's avatar Rick Waldron
Browse files

Merge pull request #152 from smikes/undefined-var-truthy-4

fix undefined var
parents 4b01ef4b 65e5aa6f
No related branches found
No related tags found
No related merge requests found
......@@ -4,7 +4,7 @@ function assert(mustBeTrue, message) {
}
if (message === undefined) {
message = 'Expected true but got ' + String(truthy);
message = 'Expected true but got ' + String(mustBeTrue);
}
$ERROR(message);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment