From 67de46487eec82f1e5c9536426441825b7af5d3f Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Sun, 13 Oct 2024 19:20:02 -0700 Subject: [PATCH] Fixed flaky test [skip ci] --- test/t/041_hnsw_intvec_vacuum_recall.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/t/041_hnsw_intvec_vacuum_recall.pl b/test/t/041_hnsw_intvec_vacuum_recall.pl index 94e6ebd..50ee39a 100644 --- a/test/t/041_hnsw_intvec_vacuum_recall.pl +++ b/test/t/041_hnsw_intvec_vacuum_recall.pl @@ -91,11 +91,11 @@ foreach (@queries) } test_recall(0.18, $limit, "before vacuum"); -test_recall(0.85, 100, "before vacuum"); +test_recall(0.84, 100, "before vacuum"); # TODO Test concurrent inserts with vacuum $node->safe_psql("postgres", "VACUUM tst;"); -test_recall(0.85, $limit, "after vacuum"); +test_recall(0.84, $limit, "after vacuum"); done_testing();