Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Justintime50 committed Oct 25, 2023
1 parent 0840f6e commit 2e35da9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/unit/sorting/test_wordle_solver.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@ def test_get_most_common():
file_data = _read_file(os.path.join('algorithms', 'assets', 'wordle_answer_list.json'))
most_common_start, most_common_letters, possible_words = get_most_common(file_data)

assert type(most_common_start) == list
assert type(most_common_letters) == list
assert type(possible_words) == list
assert isinstance(most_common_start, list)
assert isinstance(most_common_letters, list)
assert isinstance(possible_words, list)


def test_get_best_guess():
file_data = _read_file(os.path.join('algorithms', 'assets', 'wordle_answer_list.json'))
best_guess = get_best_guess(file_data)

assert type(best_guess) == list
assert isinstance(best_guess, list)


def test_read_file():
Expand Down

0 comments on commit 2e35da9

Please sign in to comment.