Skip to content

Commit dea5bad

Browse files
committed
Fix test for node 12
1 parent 7882fe7 commit dea5bad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/js-sys/tests/wasm/Symbol.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ exports.test_is_concat_spreadable = function(sym) {
2121
numeric[sym] = false;
2222
alphaNumeric = alpha.concat(numeric);
2323

24-
assert.deepEqual(alphaNumeric, ["a", "b", "c", [1, 2, 3]]);
24+
assert.deepEqual(alphaNumeric, ["a", "b", "c", numeric]);
2525
};
2626

2727
exports.test_iterator = function(sym) {

0 commit comments

Comments
 (0)