Remove trailing comma in test

This commit is contained in:
Mickaël Schoentgen 2021-09-24 10:37:59 +02:00
parent bce2b3a98e
commit 8f8851f1db

View File

@ -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):