Skip to content

Commit 00a6e16

Browse files
committed
style(test): reformat multi-line function call to single line
Simplified assert_error_response call formatting in shop test for consistency.
1 parent 8c49a7d commit 00a6e16

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

tests/test_api_functions.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -502,9 +502,7 @@ def test_shop_invalid_action_error(self, udp_client: socket.socket) -> None:
502502
)
503503

504504
# Verify error response
505-
assert_error_response(
506-
response, "Invalid action arg for shop", ["action"]
507-
)
505+
assert_error_response(response, "Invalid action arg for shop", ["action"])
508506

509507
def test_shop_invalid_state_error(self, udp_client: socket.socket) -> None:
510508
"""Test shop returns error when not in shop state."""

0 commit comments

Comments
 (0)