Skip to content

Commit

Permalink
avoid deprecated methods
Browse files Browse the repository at this point in the history
  • Loading branch information
tenderlove committed Dec 6, 2011
1 parent 0968ee3 commit 9dee540
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion activerecord/test/cases/migration_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -1555,7 +1555,7 @@ def test_rename_table_with_prefix_and_suffix
assert_equal "hello world", Thing.find(:first).content

RenameThings.up
Thing.set_table_name("prefix_awesome_things_suffix")
Thing.table_name = "prefix_awesome_things_suffix"

assert_equal "hello world", Thing.find(:first).content
ensure
Expand Down

0 comments on commit 9dee540

Please sign in to comment.