Module: wine Branch: master Commit: 326fcdf96718436d512bae09b63f707efa50929a URL: https://source.winehq.org/git/wine.git/?a=commit;h=326fcdf96718436d512bae09b...
Author: Francois Gouget fgouget@free.fr Date: Thu Aug 8 15:18:23 2019 +0200
jscript/tests: A spelling fix in an ok() message.
Signed-off-by: Francois Gouget fgouget@free.fr Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/jscript/tests/run.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/jscript/tests/run.c b/dlls/jscript/tests/run.c index 7037cff..e3f272d 100644 --- a/dlls/jscript/tests/run.c +++ b/dlls/jscript/tests/run.c @@ -2637,7 +2637,7 @@ static void test_eval(void) ok(script_disp != NULL, "script_disp == NULL\n");
hres = IDispatch_QueryInterface(script_disp, &IID_IDispatchEx, (void**)&script_dispex); - ok(hres == S_OK, "Coult not get IDispatchEx iface: %08x\n", hres); + ok(hres == S_OK, "Could not get IDispatchEx iface: %08x\n", hres); IDispatch_Release(script_disp);
str = a2bstr("eval");