t/dedupe: fixup bloom entry calculation

With m/n at 8x and with 5 default hashes for blooming, we should
be around ~2% false positive rate max.

Signed-off-by: Jens Axboe <axboe@fb.com>
diff --git a/t/dedupe.c b/t/dedupe.c
index 12ede8f..f9fb8c4 100644
--- a/t/dedupe.c
+++ b/t/dedupe.c
@@ -452,7 +452,7 @@
 	if (use_bloom) {
 		uint64_t bloom_entries;
 
-		bloom_entries = (3 * dev_size ) / (blocksize * 2);
+		bloom_entries = 8 * (dev_size / blocksize);
 		bloom = bloom_new(bloom_entries);
 	}