From f12acdb50bd6afae21d8d033548c012d23ec2791 Mon Sep 17 00:00:00 2001 From: Yoshiya Hinosawa Date: Sun, 8 Sep 2019 01:27:18 +0900 Subject: Update @typescript-eslint/* to v2.1.0 (#2878) --- tests/wasm_async.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/wasm_async.js') diff --git a/tests/wasm_async.js b/tests/wasm_async.js index 7b521caee..98a178aad 100644 --- a/tests/wasm_async.js +++ b/tests/wasm_async.js @@ -16,8 +16,8 @@ const bytes = new Uint8Array([ ]); async function main() { - let wasm = await WebAssembly.instantiate(bytes); - let result = wasm.instance.exports.add(1, 3); + const wasm = await WebAssembly.instantiate(bytes); + const result = wasm.instance.exports.add(1, 3); console.log("1 + 3 =", result); if (result != 4) { throw Error("bad"); -- cgit v1.2.3