diff options
author | Scott Barron <scott@elitists.net> | 2005-09-25 10:41:22 +0000 |
---|---|---|
committer | Scott Barron <scott@elitists.net> | 2005-09-25 10:41:22 +0000 |
commit | fa7d4a691ff4fb245c1fd0c62a11f908d5a1bcd9 (patch) | |
tree | 1b4be842f926bca373e86db1bdc2af4385c8bb93 /actionpack | |
parent | b2b0ace0584dcde4d6f5cb48c9ba235ef6d02f1b (diff) | |
download | rails-fa7d4a691ff4fb245c1fd0c62a11f908d5a1bcd9.tar.gz rails-fa7d4a691ff4fb245c1fd0c62a11f908d5a1bcd9.tar.bz2 rails-fa7d4a691ff4fb245c1fd0c62a11f908d5a1bcd9.zip |
This seems unnecessary to call in teardown and is causing the tests
to error because the table has been dropped.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2331 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/test/controller/active_record_store_test.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/actionpack/test/controller/active_record_store_test.rb b/actionpack/test/controller/active_record_store_test.rb index 688eff9d87..99034880dc 100644 --- a/actionpack/test/controller/active_record_store_test.rb +++ b/actionpack/test/controller/active_record_store_test.rb @@ -94,7 +94,6 @@ class DeprecatedActiveRecordStoreTest < ActiveRecordStoreTest def teardown session_class.connection.execute 'drop table old_sessions' session_class.table_name = 'sessions' - session_class.send :setup_sessid_compatibility! end end |