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

Fix typo. This test isn't executed in even postgresql.

This commit is contained in:
kennyj 2013-09-22 03:48:50 +09:00
parent 32e23884cc
commit 5adb4a4dc2

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