File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1569,16 +1569,16 @@ def test_named_bind_with_literal_colons_coerced
15691569
15701570class SchemaDumperTest < ActiveRecord ::TestCase
15711571 # Use nvarchar string (N'') in assert
1572- coerce_tests! :test_dump_schema_information_outputs_lexically_reverse_ordered_versions_regardless_of_database_order
1573- def test_dump_schema_information_outputs_lexically_reverse_ordered_versions_regardless_of_database_order_coerced
1572+ coerce_tests! :test_dump_schema_versions_outputs_lexically_reverse_ordered_versions_regardless_of_database_order
1573+ def test_dump_schema_versions_outputs_lexically_reverse_ordered_versions_regardless_of_database_order_coerced
15741574 versions = %w{ 20100101010101 20100201010101 20100301010101 }
15751575 versions . shuffle . each do |v |
15761576 @schema_migration . create_version ( v )
15771577 end
15781578
15791579 schema_info = ActiveRecord ::Base . lease_connection . dump_schema_information
15801580 expected = <<~STR
1581- INSERT INTO #{ ActiveRecord :: Base . lease_connection . quote_table_name ( "schema_migrations" ) } (version) VALUES
1581+ INSERT INTO #{ quote_table_name ( "schema_migrations" ) } (version) VALUES
15821582 (N'20100301010101'),
15831583 (N'20100201010101'),
15841584 (N'20100101010101');
You can’t perform that action at this time.
0 commit comments