Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/sdks
diff options
context:
space:
mode:
authorRodrigo Kumpera <kumpera@gmail.com>2018-08-23 18:50:52 +0300
committerRodrigo Kumpera <kumpera@gmail.com>2018-08-24 00:16:10 +0300
commit147dc0d0e981a08a58f4712d8cf3453617e3c96d (patch)
treeac4687fd459b084ef9198c3dc46ecf0db93a42d3 /sdks
parent89f5423018de31926c507f56c1d3c846d97cb06d (diff)
[wasm] Fix typo.
Diffstat (limited to 'sdks')
-rw-r--r--sdks/wasm/test.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/sdks/wasm/test.js b/sdks/wasm/test.js
index 32eadfb59f8..84c72241c33 100644
--- a/sdks/wasm/test.js
+++ b/sdks/wasm/test.js
@@ -96,13 +96,13 @@ var find_method = Module.cwrap ('mono_wasm_assembly_find_method', 'number', ['nu
const IGNORE_PARAM_COUNT = -1;
//test driver support code
-var bad_semd_msg_detected = false;
+var bad_send_msg_detected = false;
function mono_send_msg (key, val) {
try {
return Module.mono_method_invoke (send_message, null, "ss", [key, val]);
} catch (e) {
print ("BAD SEND MSG: " + e);
- bad_semd_msg_detected = true;
+ bad_send_msg_detected = true;
return null;
}
}
@@ -159,5 +159,5 @@ print ("Test status " + status)
if (status != "PASS")
fail_exec ("BAD TEST STATUS");
-if (bad_semd_msg_detected)
+if (bad_send_msg_detected)
fail_exec ("BAD MSG SEND DETECTED");