Remove send! usage, relic of reverted 1.9 behavior

This commit is contained in:
Jeremy Kemper
2008-07-27 21:45:33 -07:00
parent 50bbc87f85
commit eb256718c3

View File

@@ -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