aboutsummaryrefslogtreecommitdiffstats
path: root/tests/wpt/web-platform-tests/wasm/jsapi/table/assertions.js
diff options
context:
space:
mode:
authorWPT Sync Bot <josh+wptsync@joshmatthews.net>2020-01-28 08:23:29 +0000
committerWPT Sync Bot <josh+wptsync@joshmatthews.net>2020-01-28 11:11:32 +0000
commit81d0cdbb2cc73a263740569138ef2a67aa0cd106 (patch)
treeac3ca2a0c5449b3d9c1b4b431b2adf23ffbcb6f3 /tests/wpt/web-platform-tests/wasm/jsapi/table/assertions.js
parent1b7223a284cd8f780d2856a50747ffc97beffd23 (diff)
downloadservo-81d0cdbb2cc73a263740569138ef2a67aa0cd106.tar.gz
servo-81d0cdbb2cc73a263740569138ef2a67aa0cd106.zip
Update web-platform-tests to revision 55351d32dd26ea3ad42a8f5973e943ba0342c812
Diffstat (limited to 'tests/wpt/web-platform-tests/wasm/jsapi/table/assertions.js')
-rw-r--r--tests/wpt/web-platform-tests/wasm/jsapi/table/assertions.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/wpt/web-platform-tests/wasm/jsapi/table/assertions.js b/tests/wpt/web-platform-tests/wasm/jsapi/table/assertions.js
index c42a446a75d..b1aeaf1a65d 100644
--- a/tests/wpt/web-platform-tests/wasm/jsapi/table/assertions.js
+++ b/tests/wpt/web-platform-tests/wasm/jsapi/table/assertions.js
@@ -7,7 +7,7 @@ function assert_equal_to_array(table, expected, message) {
assert_equals(table.get(i), expected[i], `${message}: table.get(${i} of ${expected.length})`);
}
assert_throws_js(RangeError, () => table.get(expected.length),
- `${message}: table.get(${expected.length} of ${expected.length})`);
+ `${message}: table.get(${expected.length} of ${expected.length})`);
assert_throws_js(RangeError, () => table.get(expected.length + 1),
- `${message}: table.get(${expected.length + 1} of ${expected.length})`);
+ `${message}: table.get(${expected.length + 1} of ${expected.length})`);
}