From 16d7cf507f9cec5af267e1b75753080b707e9600 Mon Sep 17 00:00:00 2001 From: Sourcery AI <> Date: Sun, 12 Nov 2023 22:08:29 +0000 Subject: [PATCH] 'Refactored by Sourcery' --- tests/test_functions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_functions.py b/tests/test_functions.py index 8a03a1f3..ca65ae00 100644 --- a/tests/test_functions.py +++ b/tests/test_functions.py @@ -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)) \ No newline at end of file + assert list(moved_coords) == [(i + 1, i + 2) for i in range(10)] \ No newline at end of file