From 392616713d17ea555d4425c7d35678402f0c39ae Mon Sep 17 00:00:00 2001 From: Isidro Arias Date: Thu, 6 Apr 2023 14:08:04 +0200 Subject: [PATCH] captital leter --- data_structures/hashing/bloom_filter.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/data_structures/hashing/bloom_filter.py b/data_structures/hashing/bloom_filter.py index e2cc224fb..1f08ddaf2 100644 --- a/data_structures/hashing/bloom_filter.py +++ b/data_structures/hashing/bloom_filter.py @@ -54,16 +54,16 @@ class Bloom: def test_movies(): b = Bloom() - b.add("titanic") - b.add("avatar") + b.add("Titanic") + b.add("Avatar") - assert b.exists("titanic") - assert b.exists("avatar") + assert b.exists("Titanic") + assert b.exists("Avatar") - assert b.exists("the goodfather") in (True, False) - assert b.exists("interstellar") in (True, False) + assert b.exists("The Goodfather") in (True, False) + assert b.exists("Interstellar") in (True, False) assert b.exists("Parasite") in (True, False) - assert b.exists("Pulp fiction") in (True, False) + assert b.exists("Pulp Fiction") in (True, False) def random_string(size):