Module: wine Branch: master Commit: 221fdb09b4c20da45e9834aa0cae27dcc75ea27b URL: https://source.winehq.org/git/wine.git/?a=commit;h=221fdb09b4c20da45e9834aa0...
Author: Jacek Caban jacek@codeweavers.com Date: Mon Jan 4 21:35:33 2021 +0100
jscript/tests: Silence noisy debug trace.
Signed-off-by: Jacek Caban jacek@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/jscript/tests/api.js | 1 - 1 file changed, 1 deletion(-)
diff --git a/dlls/jscript/tests/api.js b/dlls/jscript/tests/api.js index 9c9d3fa56f9..da0ad1e1ebc 100644 --- a/dlls/jscript/tests/api.js +++ b/dlls/jscript/tests/api.js @@ -2521,7 +2521,6 @@ function testException(func, id) { } catch(e) { ret = e.name; num = e.number; - trace(e.message); }
ok(ret === ex.type, "Exception test, ret = " + ret + ", expected " + ex.type +". Executed function: " + func.toString());