From 841a5fe81b6351b7a17f9e5381390ebe2970f92c Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Thu, 30 Sep 2021 20:29:21 -0400 Subject: [PATCH] Tests: Fix typos --- Tests/Kernel/mprotect-multi-region-mprotect.cpp | 2 +- Tests/LibWasm/test-wasm.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Tests/Kernel/mprotect-multi-region-mprotect.cpp b/Tests/Kernel/mprotect-multi-region-mprotect.cpp index 68308fd1ae..6e36859338 100644 --- a/Tests/Kernel/mprotect-multi-region-mprotect.cpp +++ b/Tests/Kernel/mprotect-multi-region-mprotect.cpp @@ -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; } diff --git a/Tests/LibWasm/test-wasm.cpp b/Tests/LibWasm/test-wasm.cpp index 2a8a44ecc5..14ee45e604 100644 --- a/Tests/LibWasm/test-wasm.cpp +++ b/Tests/LibWasm/test-wasm.cpp @@ -116,7 +116,7 @@ TESTJS_GLOBAL_FUNCTION(parse_webassembly_module, parseWebAssemblyModule) } if (stream.handle_any_error()) { - vm.throw_exception(global_object, "Bianry stream contained errors"); + vm.throw_exception(global_object, "Binary stream contained errors"); return {}; }