Tests: Fix typos

This commit is contained in:
Nico Weber 2021-09-30 20:29:21 -04:00 committed by Linus Groh
parent 5e21759f3d
commit 841a5fe81b
2 changed files with 2 additions and 2 deletions

View file

@ -56,7 +56,7 @@ int main()
outln("Mprotect 2 ranges [2, -- ,2] -> Error");
rc = mprotect(map1, 6 * PAGE_SIZE, PROT_READ);
if (!rc) {
perror("mprotect full over missing succeded");
perror("mprotect full over missing succeeded");
return 1;
}

View file

@ -116,7 +116,7 @@ TESTJS_GLOBAL_FUNCTION(parse_webassembly_module, parseWebAssemblyModule)
}
if (stream.handle_any_error()) {
vm.throw_exception<JS::SyntaxError>(global_object, "Bianry stream contained errors");
vm.throw_exception<JS::SyntaxError>(global_object, "Binary stream contained errors");
return {};
}