From a8f4568f5396b68ae81eddc636604bb78bb6632a Mon Sep 17 00:00:00 2001 From: Aaron Patterson Date: Fri, 4 Sep 2015 19:25:59 -0700 Subject: implement abstract store methods converts old ID methods to the new abstract store methods in Rack --- actionpack/test/dispatch/request/session_test.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'actionpack/test/dispatch/request') diff --git a/actionpack/test/dispatch/request/session_test.rb b/actionpack/test/dispatch/request/session_test.rb index 410e3194e2..ae0e7e93ed 100644 --- a/actionpack/test/dispatch/request/session_test.rb +++ b/actionpack/test/dispatch/request/session_test.rb @@ -110,7 +110,7 @@ module ActionDispatch Class.new { def load_session(env); [1, {}]; end def session_exists?(env); true; end - def destroy_session(env, id, options); 123; end + def delete_session(env, id, options); 123; end }.new end end -- cgit v1.2.3