diff options
author | Rafael França <rafaelmfranca@gmail.com> | 2016-02-23 12:18:35 -0300 |
---|---|---|
committer | Rafael França <rafaelmfranca@gmail.com> | 2016-02-23 12:18:35 -0300 |
commit | 9cf5fa640602d9fbc971884864e7a061811d497d (patch) | |
tree | 19bf5d2a140479bffdb682df5f733b7913f3793f | |
parent | 42ad173d19a2220996ec4172d05681bde2e7320b (diff) | |
parent | 43c2055f61d2a2726b40fb0fb56270752b724064 (diff) | |
download | rails-9cf5fa640602d9fbc971884864e7a061811d497d.tar.gz rails-9cf5fa640602d9fbc971884864e7a061811d497d.tar.bz2 rails-9cf5fa640602d9fbc971884864e7a061811d497d.zip |
Merge pull request #23825 from kamipo/remove_needless_drop_table_test_limits
Remove needless `drop_table :test_limits`
-rw-r--r-- | activerecord/test/cases/migration_test.rb | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/activerecord/test/cases/migration_test.rb b/activerecord/test/cases/migration_test.rb index bae0467e72..5a83748292 100644 --- a/activerecord/test/cases/migration_test.rb +++ b/activerecord/test/cases/migration_test.rb @@ -587,7 +587,6 @@ class MigrationTest < ActiveRecord::TestCase if current_adapter?(:Mysql2Adapter, :PostgreSQLAdapter) def test_out_of_range_limit_should_raise - Person.connection.drop_table :test_limits rescue nil e = assert_raise(ActiveRecord::ActiveRecordError, "integer limit didn't raise") do Person.connection.create_table :test_integer_limits, :force => true do |t| t.column :bigone, :integer, :limit => 10 @@ -603,8 +602,6 @@ class MigrationTest < ActiveRecord::TestCase end end end - - Person.connection.drop_table :test_limits rescue nil end end |