Skip to content

Commit 8f4fec6

Browse files
committed
mv import to top
1 parent 6f49d7d commit 8f4fec6

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

test/bitset.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
'use strict';
22

33
const claire = require('claire');
4+
const {BitSet} = require('../lib/bitset');
45

56
const {
67
forAll,
@@ -10,7 +11,6 @@ const {
1011
transform
1112
} = claire;
1213

13-
const {BitSet} = require('../lib/bitset');
1414
const PosInt = transform(Math.floor, arb.Positive);
1515

1616
const EmptyBitSet = label('bitset', transform(
@@ -66,5 +66,4 @@ test('next clear of one set', forAll(EmptyBitSet, PosInt)
6666
b.set(bit);
6767
return b.nextClearBit(bit) === bit + 1;
6868
}).asTest());
69-
7069
});

0 commit comments

Comments
 (0)