Update web-platform-tests to revision eb6b0210d6f0b1b44bc74385de04a2291ce2575c

This commit is contained in:
WPT Sync Bot 2019-02-19 20:48:08 -05:00
parent cc8a9fa928
commit 459fbb1a34
30 changed files with 551 additions and 108 deletions

View file

@ -90,7 +90,7 @@ test(() => {
const table = new WebAssembly.Table(argument);
assert_equal_to_array(table, nulls(5), "before");
const result = table.grow(3, {});
const result = table.grow(3, null, {});
assert_equals(result, 5);
assert_equal_to_array(table, nulls(8), "after");
}, "Stray argument");