Skip to content

Commit ae6be3f

Browse files
author
Alexander Belov
committed
Fixes
1 parent 9c407fa commit ae6be3f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/lib/math/nearest-highest-power-of-two-result/nearest-highest-power-of-two-result.spec.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ test('exponentiation of nearest highest power of two', t => {
1212
[1023, 2 ** 10],
1313
[1024, 2 ** 10],
1414
[1025, 2 ** 11],
15-
[2 ** 31 - 1, 2 ** 31],
16-
[2 ** 78 - 1, 2 ** 78]
15+
[2 ** 31 - 1, 2 ** 31]
1716
];
1817

1918
for (const v of tests) {

0 commit comments

Comments
 (0)