diff --git a/activerecord/test/cases/migration_test.rb b/activerecord/test/cases/migration_test.rb index bae0467e721688a89978de54980759014aee5ff6..5a83748292d04bca4007eb0a0f37dbfa063ef1f0 100644 --- a/activerecord/test/cases/migration_test.rb +++ b/activerecord/test/cases/migration_test.rb @@ -587,7 +587,6 @@ def test_create_table_with_custom_sequence_name 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 @@ def test_out_of_range_limit_should_raise end end end - - Person.connection.drop_table :test_limits rescue nil end end