From f5458414b89514751bb5b7ac4a71a78c357dff70 Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Tue, 15 Feb 2022 18:17:05 -0800 Subject: [PATCH] Made recall test less flaky --- test/t/003_recall.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/t/003_recall.pl b/test/t/003_recall.pl index b5e5395..dddc4d5 100644 --- a/test/t/003_recall.pl +++ b/test/t/003_recall.pl @@ -82,7 +82,7 @@ foreach (@operators) { $node->safe_psql("postgres", "CREATE INDEX ON tst USING ivfflat (v $opclass);"); # Test approximate results - test_recall(1, 0.8, $operator); + test_recall(1, 0.75, $operator); test_recall(10, 0.95, $operator); test_recall(100, 1.0, $operator); }