Skip to content

Commit 2168cc7

Browse files
committed
chore: fix lint errors
1 parent 14094ea commit 2168cc7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/utilities-powerset.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,15 +71,15 @@ describe("utilities - powerset", () => {
7171
});
7272

7373
[0, 1, 2, 3, 4, 5, 6, 8].forEach((size) => {
74-
it(`should generate exactly 2^n - 1 combinations for n=${size}`, () => {
74+
it(`should generate exactly 2^n - 1 combinations for n=${String(size)}`, () => {
7575
const input = Array.from({ length: size }, (_, index) => index);
7676
const result = getPowerSet(input);
7777
assert.lengthOf(result, 2 ** size - 1);
7878
});
7979
});
8080

8181
[4, 5].forEach((size) => {
82-
it(`should match an independently computed reference order for n=${size}`, () => {
82+
it(`should match an independently computed reference order for n=${String(size)}`, () => {
8383
const input = Array.from({ length: size }, (_, index) => index);
8484
const result = getPowerSet(input);
8585
assert.sameDeepOrderedMembers(result, referencePowerSet(input));

0 commit comments

Comments
 (0)