mirror of
https://github.com/teamcapybara/capybara.git
synced 2022-11-09 12:08:07 -05:00
Rack body should respond to each, passing string breaks on 1.9.2
This commit is contained in:
parent
aa5fefa385
commit
b0d18b89bb
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ module Capybara
|
|||
|
||||
def call(env)
|
||||
if env["PATH_INFO"] == "/__identify__"
|
||||
[200, {}, @app.object_id.to_s]
|
||||
[200, {}, [@app.object_id.to_s]]
|
||||
else
|
||||
@app.call(env)
|
||||
end
|
||||
|
|
Loading…
Add table
Reference in a new issue