mshtml/tests: Fix the spelling of an ok() message.

Signed-off-by: Francois Gouget <fgouget@free.fr>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Francois Gouget 2021-05-15 17:41:03 +02:00 committed by Alexandre Julliard
parent 832b7f1e86
commit 53cba4f066
1 changed files with 1 additions and 1 deletions

View File

@ -453,7 +453,7 @@ async_test("animation_frame", function() {
var id = requestAnimationFrame(function(x) {
ok(this === window, "this != window");
ok(typeof(x) === "number", "x = " + x);
ok(arguments.length === 1, "arguments.lenght = " + arguments.length);
ok(arguments.length === 1, "arguments.length = " + arguments.length);
next_test();
});
ok(typeof(id) === "number", "id = " + id);