Update test/built-ins/Map/groupBy/string.js

Co-authored-by: Jordan Harband <ljharb@gmail.com>
This commit is contained in:
SUZUKI Sosuke 2024-04-01 13:35:21 +09:00 committed by Philip Chimento
parent 112cf25567
commit 8245443f8f
1 changed files with 1 additions and 1 deletions

View File

@ -19,4 +19,4 @@ const map = Map.groupBy(string, function (char) {
assert.compareArray(Array.from(map.keys()), ['before', 'after']);
assert.compareArray(map.get('before'), ['a', 'b']);
assert.compareArray(map.get('odd'), ['c', 'd']);
assert.compareArray(map.get('after'), ['c', 'd']);