1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Merge pull request #12311 from kennyj/fix_typo_about_uuid

Fix typo. This test isn't executed even in the postgresql.
This commit is contained in:
Rafael Mendonça França 2013-09-21 12:24:05 -07:00
commit 8000835267

View file

@ -299,7 +299,7 @@ class SchemaDumperTest < ActiveRecord::TestCase
def test_schema_dump_includes_uuid_shorthand_definition
output = standard_dump
if %r{create_table "poistgresql_uuids"} =~ output
if %r{create_table "postgresql_uuids"} =~ output
assert_match %r{t.uuid "guid"}, output
end
end