We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6efa0d commit 6e46b3bCopy full SHA for 6e46b3b
activerecord/test/cases/fixtures_test.rb
@@ -782,7 +782,7 @@ def test_named_accessor_for_randomly_named_namespaced_fixture_and_class
782
end
783
784
def test_table_name_is_defined_in_the_model
785
- assert_equal :randomly_named_table, ActiveRecord::Fixtures::all_loaded_fixtures["admin/randomly_named_a9"].table_name
786
- assert_equal :randomly_named_table, Admin::ClassNameThatDoesNotFollowCONVENTIONS.table_name
+ assert_equal 'randomly_named_table', ActiveRecord::Fixtures::all_loaded_fixtures["admin/randomly_named_a9"].table_name
+ assert_equal 'randomly_named_table', Admin::ClassNameThatDoesNotFollowCONVENTIONS.table_name
787
788
0 commit comments