Skip to content

Commit

Permalink
Merge pull request #9010 from vipulnsward/remove_extra_sort_from_test
Browse files Browse the repository at this point in the history
Remove extra sort from test
  • Loading branch information
rafaelfranca committed Jan 21, 2013
2 parents 57b65ef + 7f5dd5b commit 8b815b9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions activerecord/test/cases/migration/change_schema_test.rb
Expand Up @@ -35,7 +35,7 @@ def test_create_table_adds_id
t.column :foo, :string
end

assert_equal %w(foo id), connection.columns(:testings).map(&:name).sort
assert_equal %w(id foo), connection.columns(:testings).map(&:name)
end

def test_create_table_with_not_null_column
Expand Down Expand Up @@ -119,7 +119,7 @@ def test_create_table_with_primary_key_prefix_as_table_name_with_underscore
t.column :foo, :string
end

assert_equal %w(foo testing_id), connection.columns(:testings).map(&:name).sort
assert_equal %w(testing_id foo), connection.columns(:testings).map(&:name)
end

def test_create_table_with_primary_key_prefix_as_table_name
Expand All @@ -129,7 +129,7 @@ def test_create_table_with_primary_key_prefix_as_table_name
t.column :foo, :string
end

assert_equal %w(foo testingid), connection.columns(:testings).map(&:name).sort
assert_equal %w(testingid foo), connection.columns(:testings).map(&:name)
end

def test_create_table_raises_when_redefining_primary_key_column
Expand Down

0 comments on commit 8b815b9

Please sign in to comment.