Skip to content

Commit

Permalink
Appease formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
omus committed Sep 29, 2021
1 parent d6aeacc commit 6457586
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
6 changes: 5 additions & 1 deletion test/issues.jl
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,11 @@ try
end

stream = Base.BufferStream()
S3.get_object(BUCKET_NAME, file_name, Dict("response_stream" => stream, "return_stream" => true))
S3.get_object(
BUCKET_NAME,
file_name,
Dict("response_stream" => stream, "return_stream" => true),
)
if AWS.DEFAULT_BACKEND[] isa AWS.HTTPBackend
@test !isopen(stream)
else
Expand Down
6 changes: 5 additions & 1 deletion test/minio.jl
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,11 @@ try
end

stream = Base.BufferStream()
S3.get_object("anewbucket", file_name, Dict("response_stream" => stream, "return_stream" => true))
S3.get_object(
"anewbucket",
file_name,
Dict("response_stream" => stream, "return_stream" => true),
)
if AWS.DEFAULT_BACKEND[] isa AWS.HTTPBackend
@test !isopen(stream)
else
Expand Down

0 comments on commit 6457586

Please sign in to comment.