mirror of
https://github.com/httpie/cli.git
synced 2025-08-19 05:46:45 +02:00
Minor clean-up (#1078)
- Remove default arguments to `open()`. - Make use of `pytest` mechanisms for temporary folders.
This commit is contained in:
committed by
GitHub
parent
611b278b63
commit
a61f9e1114
@@ -53,7 +53,8 @@ def test_chunked_stdin(httpbin_with_chunked_support):
|
||||
|
||||
|
||||
def test_chunked_stdin_multiple_chunks(httpbin_with_chunked_support):
|
||||
stdin_bytes = FILE_PATH.read_bytes() + b'\n' + FILE_PATH.read_bytes()
|
||||
data = FILE_PATH.read_bytes()
|
||||
stdin_bytes = data + b'\n' + data
|
||||
r = http(
|
||||
'--verbose',
|
||||
'--chunked',
|
||||
|
Reference in New Issue
Block a user