Skip to content

Commit

Permalink
Fix whitespace.
Browse files Browse the repository at this point in the history
Co-authored-by: Michael Gee <michaelpgee@gmail.com>
  • Loading branch information
ioquatix and mikegee committed Mar 20, 2024
1 parent 47289f9 commit a5e98dc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/rack/mock.rb
Expand Up @@ -216,11 +216,11 @@ def body
body = body.body if body.respond_to?(:body)

if body.respond_to?(:each)
body.each do |chunk|
buffer << chunk
end
body.each do |chunk|
buffer << chunk
end
else
buffer = body.to_s
buffer = body.to_s
end

return buffer
Expand Down

0 comments on commit a5e98dc

Please sign in to comment.