From 8178a902ce126746e567b6144994d60fee58c7c1 Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Wed, 10 Apr 2024 16:34:56 -0700 Subject: [PATCH] Fixed flaky test [skip ci] --- test/t/029_hnsw_bit_vacuum_recall.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/t/029_hnsw_bit_vacuum_recall.pl b/test/t/029_hnsw_bit_vacuum_recall.pl index 08b4ec6..ccff0db 100644 --- a/test/t/029_hnsw_bit_vacuum_recall.pl +++ b/test/t/029_hnsw_bit_vacuum_recall.pl @@ -90,11 +90,11 @@ foreach (@queries) push(@expected, $res); } -test_recall(0.4, 100, "before vacuum"); +test_recall(0.35, 100, "before vacuum"); # TODO Test concurrent inserts with vacuum $node->safe_psql("postgres", "VACUUM tst;"); -test_recall(0.8, 100, "after vacuum"); +test_recall(0.80, 100, "after vacuum"); done_testing();