Skip to content

Commit fb89316

Browse files
🧪 test: Make sure assertion message is a string.
1 parent fe0881e commit fb89316

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/src/cycle.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ test('cycle', (t) => {
2121

2222
for (let i = 0; i < 1000; ++i) {
2323
for (const [j, element] of a.entries()) {
24-
t.deepEqual(next(it), element, i + '.' + j);
24+
t.deepEqual(next(it), element, `${i}.${j}`);
2525
}
2626
}
2727
});

0 commit comments

Comments
 (0)