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

fix undefined var
This commit is contained in:
Rick Waldron 2015-02-16 13:15:28 -05:00
commit 51f0c1daad
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}