Corrected the binary_content method
This commit is contained in:
parent
f28e572c65
commit
c50dd048e3
1 changed files with 2 additions and 2 deletions
|
@ -54,13 +54,13 @@ module ChunkMatch
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
module AbstractController
|
module ActionController
|
||||||
class TestResponse
|
class TestResponse
|
||||||
def binary_content
|
def binary_content
|
||||||
sio = StringIO.new
|
sio = StringIO.new
|
||||||
begin
|
begin
|
||||||
$stdout = sio
|
$stdout = sio
|
||||||
r.body.call
|
body.call
|
||||||
ensure
|
ensure
|
||||||
$stdout = STDOUT
|
$stdout = STDOUT
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Reference in a new issue