Removed non-standard uneval() usage.

This commit is contained in:
hackademix 2019-02-01 01:17:09 +01:00
parent 20b689d015
commit d152a53871
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ var Test = (() => {
error(e);
}
this[r ? "passed" : "failed"]++;
log(`${r ? "PASSED" : "FAILED"} ${msg || uneval(test)}`);
log(`${r ? "PASSED" : "FAILED"} ${msg || test}`);
if (typeof callback === "function") try {
callback(r, test, msg);
} catch(e) {