Skip to content

Commit 4664644

Browse files
committed
Fix yapf
1 parent 0432e64 commit 4664644

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tests/mock_vws/test_add_target.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -253,8 +253,8 @@ def test_name_valid(
253253
(None, codes.BAD_REQUEST),
254254
(chr(_MAX_CHAR_VALUE + 1), codes.INTERNAL_SERVER_ERROR),
255255
(
256-
chr(_MAX_CHAR_VALUE + 1) *
257-
(_MAX_NAME_LENGTH + 1), codes.BAD_REQUEST,
256+
chr(_MAX_CHAR_VALUE + 1) * (_MAX_NAME_LENGTH + 1),
257+
codes.BAD_REQUEST,
258258
),
259259
],
260260
ids=[

tests/mock_vws/test_update_target.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -538,8 +538,8 @@ def test_name_valid(
538538
(None, codes.BAD_REQUEST),
539539
(chr(_MAX_CHAR_VALUE + 1), codes.INTERNAL_SERVER_ERROR),
540540
(
541-
chr(_MAX_CHAR_VALUE + 1) *
542-
(_MAX_NAME_LENGTH + 1), codes.BAD_REQUEST,
541+
chr(_MAX_CHAR_VALUE + 1) * (_MAX_NAME_LENGTH + 1),
542+
codes.BAD_REQUEST,
543543
),
544544
],
545545
ids=[

0 commit comments

Comments
 (0)