Skip to content

Commit 5853bfb

Browse files
committed
black
1 parent 55132a2 commit 5853bfb

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

tests/test_interactions.py

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -192,20 +192,21 @@ def _test(newpos, expected_shift):
192192
pixels_to_position_conv_factor = 1280 * 0.00085
193193
# Test dragging the nodes around
194194
_test(
195-
perform_dragging(dash_duo, init_x, init_y, 150, 0, elem_tap, actions),
196-
(150, 0)
195+
perform_dragging(dash_duo, init_x, init_y, 150, 0, elem_tap, actions), (150, 0)
197196
)
198197
_test(
199198
perform_dragging(dash_duo, init_x + 150, init_y, 0, 150, elem_tap, actions),
200-
(150, 150)
199+
(150, 150),
201200
)
202201
_test(
203-
perform_dragging(dash_duo, init_x + 150, init_y + 150, -150, -150, elem_tap, actions),
204-
(0, 0)
202+
perform_dragging(
203+
dash_duo, init_x + 150, init_y + 150, -150, -150, elem_tap, actions
204+
),
205+
(0, 0),
205206
)
206207
_test(
207208
perform_dragging(dash_duo, init_x, init_y, 100, -100, elem_tap, actions),
208-
(100, -100)
209+
(100, -100),
209210
)
210211

211212

0 commit comments

Comments
 (0)