From 8c4293575abeb3e71db7a2805b334e4dc4e2240b Mon Sep 17 00:00:00 2001 From: Vytautas Liuolia Date: Wed, 17 Apr 2024 16:15:06 +0200 Subject: [PATCH] chore(ruff): use parentheses to prevent too sparse layout --- tests/test_media_multipart.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tests/test_media_multipart.py b/tests/test_media_multipart.py index caec4c1dc..6643a3146 100644 --- a/tests/test_media_multipart.py +++ b/tests/test_media_multipart.py @@ -60,10 +60,7 @@ b'--BOUNDARY\r\n' b'Content-Disposition: form-data; name="file"; filename="bytes"\r\n' b'Content-Type: application/x-falcon\r\n\r\n' - + b'123456789abcdef\n' - * 64 - * 1024 - * 2 + + (b'123456789abcdef\n' * 64 * 1024 * 2) + b'\r\n' b'--BOUNDARY\r\n' b'Content-Disposition: form-data; name="empty"\r\n'