Gabriel Ivăncescu : mshtml: Fix copy-paste mistake in test message.
Module: wine Branch: master Commit: f0806c52a3fb44739cdd9eb2c468b11f2f6d129b URL: https://gitlab.winehq.org/wine/wine/-/commit/f0806c52a3fb44739cdd9eb2c468b11... Author: Gabriel Ivăncescu <gabrielopcode(a)gmail.com> Date: Mon Jul 25 21:54:04 2022 +0300 mshtml: Fix copy-paste mistake in test message. Signed-off-by: Gabriel Ivăncescu <gabrielopcode(a)gmail.com> --- dlls/mshtml/tests/xhr.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/mshtml/tests/xhr.js b/dlls/mshtml/tests/xhr.js index 8d9af26a943..58665499052 100644 --- a/dlls/mshtml/tests/xhr.js +++ b/dlls/mshtml/tests/xhr.js @@ -54,7 +54,7 @@ function test_xhr() { ok(loadstart, "onloadstart not fired before onloadend"); var props = [ "initProgressEvent", "lengthComputable", "loaded", "total" ]; for(var i = 0; i < props.length; i++) - ok(props[i] in e, props[i] + " not available in loadstart"); + ok(props[i] in e, props[i] + " not available in loadend"); next_test(); }; }
participants (1)
-
Alexandre Julliard