Assume 0 false positives in test

This commit is contained in:
uNetworkingAB
2022-10-29 06:20:43 +02:00
committed by GitHub
parent a730941806
commit 9acacf7ebe
+2 -2
View File
@@ -105,5 +105,5 @@ int main() {
/* It is totally fine to have a few false positives */ /* It is totally fine to have a few false positives */
std::cout << "Total false positives: " << totalFalsePositives << std::endl; std::cout << "Total false positives: " << totalFalsePositives << std::endl;
assert(totalFalsePositives == 1); assert(totalFalsePositives == 0);
} }