Skip to content

Commit d850a22

Browse files
committed
More lax approx_count_distinct test
1 parent 1eeeef8 commit d850a22

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/prepare.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -586,7 +586,7 @@ describe('prepare', function() {
586586
});
587587
it("should aggregate approx_count_distinct(flt)", function (done) {
588588
db.all("SELECT approx_count_distinct(flt) as approx_count_distinct FROM foo", function (err: null | Error, res: TableData) {
589-
assert.ok(res[0].approx_count_distinct >= 950);
589+
assert.ok(res[0].approx_count_distinct >= 940);
590590
done(err);
591591
});
592592
});

0 commit comments

Comments
 (0)