summaryrefslogtreecommitdiff
path: root/cli/tests
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests')
-rw-r--r--cli/tests/fmt/expected_fmt_check_tests_dir.out2
-rw-r--r--cli/tests/wasm_streaming.js3
2 files changed, 2 insertions, 3 deletions
diff --git a/cli/tests/fmt/expected_fmt_check_tests_dir.out b/cli/tests/fmt/expected_fmt_check_tests_dir.out
index fe84cd485..e2dc2b4ae 100644
--- a/cli/tests/fmt/expected_fmt_check_tests_dir.out
+++ b/cli/tests/fmt/expected_fmt_check_tests_dir.out
@@ -1,2 +1,2 @@
[WILDCARD]
-error: Found 7 not formatted files in [WILDCARD] files
+error: Found 6 not formatted files in [WILDCARD] files
diff --git a/cli/tests/wasm_streaming.js b/cli/tests/wasm_streaming.js
index 6c9457325..1933425d7 100644
--- a/cli/tests/wasm_streaming.js
+++ b/cli/tests/wasm_streaming.js
@@ -16,8 +16,7 @@ const bytes = new Uint8Array([
]);
async function main() {
- const wasm = await WebAssembly.instantiateStreaming(bytes, {
- });
+ const wasm = await WebAssembly.instantiateStreaming(bytes, {});
const result = wasm.instance.exports.add(1, 3);
console.log("1 + 3 =", result);