mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
fixing test class name
This commit is contained in:
parent
145ad7b6aa
commit
5baa66cbad
2 changed files with 2 additions and 2 deletions
|
@ -93,7 +93,7 @@ module ActiveRecord
|
|||
add_index :test_models, :hat_name
|
||||
|
||||
# FIXME: we should test that the index goes away
|
||||
remove_column("test_models", "hat_size")
|
||||
remove_column("test_models", "hat_name")
|
||||
end
|
||||
|
||||
def test_remove_column_with_multi_column_index
|
||||
|
|
|
@ -2,7 +2,7 @@ require "cases/migration/helper"
|
|||
|
||||
module ActiveRecord
|
||||
class Migration
|
||||
class RenameColumnTest < ActiveRecord::TestCase
|
||||
class RenameTableTest < ActiveRecord::TestCase
|
||||
include ActiveRecord::Migration::TestHelper
|
||||
|
||||
self.use_transactional_fixtures = false
|
||||
|
|
Loading…
Reference in a new issue