Transform compareArray -> assert.compareArray: test/built-ins/Map/**/*.js (#3237)

This commit is contained in:
Rick Waldron 2021-10-05 22:46:16 -04:00 committed by GitHub
parent aea4ae2059
commit ed91c59b94
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ var map = new Map(iterable);
assert.sameValue(counter, 2, "`Map.prototype.set` called twice.");
assert(compareArray(results[0], iterable[0]));
assert(compareArray(results[1], iterable[1]));
assert.compareArray(results[0], iterable[0]);
assert.compareArray(results[1], iterable[1]);
assert.sameValue(_this[0], map);
assert.sameValue(_this[1], map);