Skip to content

Commit bf8a751

Browse files
authored
Update PatriciaTrieTest.java
1 parent 1e5faa8 commit bf8a751

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/com/thealgorithms/datastructures/tries/PatriciaTrieTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ void basicPutGetContainsAndRemove() {
2727
var t = new PatriciaTrie<String>();
2828
assertTrue(t.isEmpty());
2929

30-
t.put("", "root"); // empty key
30+
t.put("", "root"); // empty key
3131
t.put("a", "x");
3232
t.put("ab", "y");
3333
t.put("abc", "z");

0 commit comments

Comments
 (0)