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 e87144b commit 16d7cf5
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 @@ -474,4 +474,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 16d7cf5

Please sign in to comment.