1
0
Fork 0
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:
Aaron Patterson 2012-01-12 14:47:36 -08:00
parent 145ad7b6aa
commit 5baa66cbad
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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