mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04:00
Remove send! usage, relic of reverted 1.9 behavior
This commit is contained in:
@@ -507,7 +507,7 @@ EOF
|
||||
# Delegate unhandled messages to the current session instance.
|
||||
def method_missing(sym, *args, &block)
|
||||
reset! unless @integration_session
|
||||
returning @integration_session.send!(sym, *args, &block) do
|
||||
returning @integration_session.__send__(sym, *args, &block) do
|
||||
copy_session_variables!
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user