Skip to content

Commit

Permalink
'Refactored by Sourcery'
Browse files Browse the repository at this point in the history
  • Loading branch information
Sourcery AI committed Nov 12, 2023
1 parent 2e4c7c5 commit 3f58c5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -475,4 +475,4 @@ def test_move_coordinates_generator() -> None:
moved_coords = move_coordinates(coords, (1, 1))

assert isinstance(moved_coords, Generator)
assert list(moved_coords) == list((i + 1, i + 2) for i in range(10))
assert list(moved_coords) == [(i + 1, i + 2) for i in range(10)]

0 comments on commit 3f58c5e

Please sign in to comment.