From 6e9f0879ac81e1f4febe2a60234d308e8a2c6f2d Mon Sep 17 00:00:00 2001 From: "Andreas Koepf (aider)" Date: Sun, 2 Feb 2025 16:42:21 +0100 Subject: [PATCH] fix: Remove redundant parameters in ARC 1D task test suite --- tests/test_arc_1d.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_arc_1d.py b/tests/test_arc_1d.py index 23a32ce3..9a7ee083 100644 --- a/tests/test_arc_1d.py +++ b/tests/test_arc_1d.py @@ -21,13 +21,13 @@ def test_all_arc_1d_tasks(): # Test all task functions tasks = [ - (task_move_n_pix, {"move_pix": 2, "solid": True}), - (task_move_n_pix_wrapped, {"move_pix": 2, "solid": True}), + (task_move_n_pix, {"solid": True}), + (task_move_n_pix_wrapped, {"solid": True}), (task_gravity, {}), (task_gravity_counting, {}), (task_gravity_antigravity, {}), (task_block_touch_dot, {}), - (task_block_touch_dot_n_pix, {"move_pix": 2}), + (task_block_touch_dot_n_pix, {}), (task_block_scale_to_dot, {}), (task_two_points_and_fill, {}), (task_reflect_block_with_border_pixel, {}),