Skip to content

Commit

Permalink
mv import to top
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmywarting committed Jun 29, 2021
1 parent 6f49d7d commit 8f4fec6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions test/bitset.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
'use strict';

const claire = require('claire');
const {BitSet} = require('../lib/bitset');

const {
forAll,
Expand All @@ -10,7 +11,6 @@ const {
transform
} = claire;

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

const EmptyBitSet = label('bitset', transform(
Expand Down Expand Up @@ -66,5 +66,4 @@ test('next clear of one set', forAll(EmptyBitSet, PosInt)
b.set(bit);
return b.nextClearBit(bit) === bit + 1;
}).asTest());

});

0 comments on commit 8f4fec6

Please sign in to comment.