diff options
author | Akira Matsuda <ronnie@dio.jp> | 2013-07-29 03:27:10 +0900 |
---|---|---|
committer | Akira Matsuda <ronnie@dio.jp> | 2013-07-29 03:27:10 +0900 |
commit | 25324b632a23c4d032942795b3fb2b21eee2f94f (patch) | |
tree | ee4d2a8ea9b924401a66cc41dbed755ea1209ec6 /activerecord | |
parent | d011c74d1a475ae3a5359cd9c6b50b0846bc0787 (diff) | |
download | rails-25324b632a23c4d032942795b3fb2b21eee2f94f.tar.gz rails-25324b632a23c4d032942795b3fb2b21eee2f94f.tar.bz2 rails-25324b632a23c4d032942795b3fb2b21eee2f94f.zip |
Revert "fix order dependent test related to migration"
This reverts commit 10259c3e906da2191ef0d43cd664a3b5504d9f8c.
reason: this causes rake test_mysql and test_mysql2 fail
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/test/cases/migration_test.rb | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/activerecord/test/cases/migration_test.rb b/activerecord/test/cases/migration_test.rb index 4474c22cf8..ed080b2995 100644 --- a/activerecord/test/cases/migration_test.rb +++ b/activerecord/test/cases/migration_test.rb @@ -846,10 +846,6 @@ class CopyMigrationsTest < ActiveRecord::TestCase end def test_check_pending_with_stdlib_logger - migrations_path = MIGRATIONS_ROOT + "/valid" - ActiveRecord::Migrator.migrations_paths = migrations_path - ActiveRecord::Migrator.up migrations_path - old, ActiveRecord::Base.logger = ActiveRecord::Base.logger, ::Logger.new($stdout) quietly do assert_nothing_raised { ActiveRecord::Migration::CheckPending.new(Proc.new {}).call({}) } |