Correct small whitespace inconsistency, lost while renaming variables.
1 // Map can take an argument that is an array of singleton arrays.
3 var arr = [["a"], ["b"], ["c"]];
6 for (var [k, _] of arr) {
7 assertEq(m.has(k), true);
8 assertEq(m.get(k), undefined);