From 43c2055f61d2a2726b40fb0fb56270752b724064 Mon Sep 17 00:00:00 2001 From: Ryuta Kamizono Date: Tue, 23 Feb 2016 23:54:29 +0900 Subject: Remove needless `drop_table :test_limits` A `:test_limits` table has not been created. --- activerecord/test/cases/migration_test.rb | 3 --- 1 file changed, 3 deletions(-) (limited to 'activerecord/test') 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 -- cgit v1.2.3