Skip to content

Commit 878e96e

Browse files
committed
fix lint
1 parent 860c10b commit 878e96e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/arithmetic-test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -311,9 +311,9 @@ describe('BN.js/Arithmetic', function () {
311311
assert.equal(a.clone().imuln(0).isZero(), true);
312312
assert.equal(a.clone().muln(0).isZero(), true);
313313

314-
var a = new BN('1222222225255589');
315-
assert.equal(a.clone().imuln(0).isZero(), true);
316-
assert.equal(a.clone().muln(0).isZero(), true);
314+
var b = new BN('1222222225255589');
315+
assert.equal(b.clone().imuln(0).isZero(), true);
316+
assert.equal(b.clone().muln(0).isZero(), true);
317317
});
318318
});
319319

0 commit comments

Comments
 (0)