Skip to content

Commit cb0b9c4

Browse files
committed
chore: remove redundant test
1 parent a28d87d commit cb0b9c4

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

tests/datastructures/trees/trie/test_trie.py

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -42,16 +42,6 @@ def test_trie_insert_and_search_words_prefixed_with_he(self):
4242
actual2 = trie.search("her")
4343
self.assertEqual(["her", "here"], actual2)
4444

45-
def test_trie_insert_and_search_words_prefixed_with_he(self):
46-
"""Test insert into trie with index on words"""
47-
trie = Trie()
48-
sentence= "here hear he hello how her"
49-
words = sentence.split(" ")
50-
for idx, word in enumerate(words):
51-
trie.insert(word, idx)
52-
53-
print(trie)
54-
5545

5646
if __name__ == "__main__":
5747
unittest.main()

0 commit comments

Comments
 (0)