Skip to content

Commit

Permalink
Removed single letter variable
Browse files Browse the repository at this point in the history
  • Loading branch information
jferris committed Jun 14, 2011
1 parent b88041d commit d7d4ed1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/capybara/driver/webkit/browser.rb
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,9 @@ def check

def read_response
response_length = @socket.gets.to_i
s = @socket.read(response_length)
s.force_encoding("UTF-8")
s
response = @socket.read(response_length)
response.force_encoding("UTF-8")
response
end
end
end

0 comments on commit d7d4ed1

Please sign in to comment.