diff options
author | Anupam Choudhury <contact2anupam@gmail.com> | 2013-03-22 14:21:46 +0530 |
---|---|---|
committer | Anupam Choudhury <contact2anupam@gmail.com> | 2013-03-22 14:21:46 +0530 |
commit | ae41ca80b5b77d4122cf71eb7be058b1282a1aaf (patch) | |
tree | 4804a897ea701e095cdfcc79bb3323be87a97975 /activerecord/test | |
parent | 0d3cb003de66409e8deccddcf8426822a84b3930 (diff) | |
download | rails-ae41ca80b5b77d4122cf71eb7be058b1282a1aaf.tar.gz rails-ae41ca80b5b77d4122cf71eb7be058b1282a1aaf.tar.bz2 rails-ae41ca80b5b77d4122cf71eb7be058b1282a1aaf.zip |
Removed unused loop variable
Diffstat (limited to 'activerecord/test')
-rw-r--r-- | activerecord/test/cases/adapters/mysql/connection_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/cases/adapters/mysql/connection_test.rb b/activerecord/test/cases/adapters/mysql/connection_test.rb index b965983fec..1844a2e0dc 100644 --- a/activerecord/test/cases/adapters/mysql/connection_test.rb +++ b/activerecord/test/cases/adapters/mysql/connection_test.rb @@ -17,7 +17,7 @@ class MysqlConnectionTest < ActiveRecord::TestCase end def test_connect_with_url - run_without_connection do |orig| + run_without_connection do ar_config = ARTest.connection_config['arunit'] skip "This test doesn't work with custom socket location" if ar_config['socket'] |