From: =?utf-8?q?Timo_R=C3=B6hling?= <roehling@debian.org>
Date: Wed, 9 Feb 2022 01:38:34 +0100
Subject: Fix floating point comparisons in unit tests

---
 tests/test_lowlevel_ivf.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a/tests/test_lowlevel_ivf.cpp
+++ b/tests/test_lowlevel_ivf.cpp
@@ -387,7 +387,7 @@
                     float computed_D = scanner->distance_to_code(
                             xb.data() + vno * il->code_size);
 
-                    EXPECT_EQ(computed_D, D[jj]);
+                    EXPECT_FLOAT_EQ(computed_D, D[jj]);
                 }
             }
         }
