Skip to content

Commit 6b01e00

Browse files
committed
Fix linter checks (2)
1 parent 56f8d5f commit 6b01e00

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

hashtable/04_load_factor/test_hashtable.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def test_should_create_hashtable_with_one_load_factor_threshold():
5555
)
5656

5757

58-
def test_should_not_create_hashtable_with_load_factor_threshold_greater_than_1():
58+
def test_should_not_create_hashtable_with_load_factor_threshold_above_one():
5959
with pytest.raises(ValueError):
6060
HashTable(load_factor_threshold=1.1)
6161

hashtable/05_separate_chaining/test_hashtable.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def test_should_create_hashtable_with_one_load_factor_threshold():
5656
)
5757

5858

59-
def test_should_not_create_hashtable_with_load_factor_threshold_greater_than_1():
59+
def test_should_not_create_hashtable_with_load_factor_threshold_above_one():
6060
with pytest.raises(ValueError):
6161
HashTable(load_factor_threshold=1.1)
6262

hashtable/06_insertion_order/test_hashtable.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def test_should_create_hashtable_with_one_load_factor_threshold():
5555
)
5656

5757

58-
def test_should_not_create_hashtable_with_load_factor_threshold_greater_than_1():
58+
def test_should_not_create_hashtable_with_load_factor_threshold_above_one():
5959
with pytest.raises(ValueError):
6060
HashTable(load_factor_threshold=1.1)
6161

0 commit comments

Comments
 (0)