From 8f8851f1dbd511d3bc0ea0f6da7459045610afce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20Schoentgen?= Date: Fri, 24 Sep 2021 10:37:59 +0200 Subject: [PATCH] Remove trailing comma in test --- tests/test_binary.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_binary.py b/tests/test_binary.py index 2c39a89c..ca51aa16 100644 --- a/tests/test_binary.py +++ b/tests/test_binary.py @@ -21,7 +21,7 @@ class TestBinaryRequestData: def test_binary_file_path(self, httpbin): env = MockEnvironment(stdin_isatty=True, stdout_isatty=False) r = http('--print=B', 'POST', httpbin.url + '/post', - '@' + BIN_FILE_PATH_ARG, env=env, ) + '@' + BIN_FILE_PATH_ARG, env=env) assert r == BIN_FILE_CONTENT def test_binary_file_form(self, httpbin):