diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2011-06-01 10:52:41 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2011-06-01 10:52:41 -0700 |
commit | 63665f6c9fbc19ca9163dc3811ffbe41311ca7e0 (patch) | |
tree | 223081cdc4039ef8befb7612221c4982d28eee60 /activerecord/test/cases/adapters | |
parent | 7d447c4726e7b5fb1f8eddcd88bcd2dd70ffed79 (diff) | |
parent | 802555a5cdf116abc86344d37134e2384ef15e82 (diff) | |
download | rails-63665f6c9fbc19ca9163dc3811ffbe41311ca7e0.tar.gz rails-63665f6c9fbc19ca9163dc3811ffbe41311ca7e0.tar.bz2 rails-63665f6c9fbc19ca9163dc3811ffbe41311ca7e0.zip |
Merge pull request #1385 from smartinez87/drop
#drop_table accepts no options now.
Diffstat (limited to 'activerecord/test/cases/adapters')
-rw-r--r-- | activerecord/test/cases/adapters/firebird/migration_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/cases/adapters/firebird/migration_test.rb b/activerecord/test/cases/adapters/firebird/migration_test.rb index 710661b9bd..5c94593765 100644 --- a/activerecord/test/cases/adapters/firebird/migration_test.rb +++ b/activerecord/test/cases/adapters/firebird/migration_test.rb @@ -24,7 +24,7 @@ class FirebirdMigrationTest < ActiveRecord::TestCase assert !sequence_exists?('foo_seq') assert sequence_exists?('foo_custom_seq') - assert_nothing_raised { @connection.drop_table(:foo, :sequence => 'foo_custom_seq') } + assert_nothing_raised { @connection.drop_table(:foo) } assert !sequence_exists?('foo_custom_seq') ensure FireRuby::Generator.new('foo_custom_seq', @fireruby_connection).drop rescue nil |