From 9acacf7ebe23d5302be33b0685dbc5d1ff0cde0e Mon Sep 17 00:00:00 2001 From: uNetworkingAB <110806833+uNetworkingAB@users.noreply.github.com> Date: Sat, 29 Oct 2022 06:20:43 +0200 Subject: [PATCH] Assume 0 false positives in test --- tests/BloomFilter.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/BloomFilter.cpp b/tests/BloomFilter.cpp index 26db9b4..d94fe69 100644 --- a/tests/BloomFilter.cpp +++ b/tests/BloomFilter.cpp @@ -105,5 +105,5 @@ int main() { /* It is totally fine to have a few false positives */ std::cout << "Total false positives: " << totalFalsePositives << std::endl; - assert(totalFalsePositives == 1); -} \ No newline at end of file + assert(totalFalsePositives == 0); +}