diff options
author | kennyj <kennyj@gmail.com> | 2013-09-22 03:48:50 +0900 |
---|---|---|
committer | kennyj <kennyj@gmail.com> | 2013-09-22 03:48:50 +0900 |
commit | 5adb4a4dc26b113f7087e70463ce6ea121e65eb0 (patch) | |
tree | 7e98bc13001184c1ae21f607e4846fed5929a850 /activerecord/test | |
parent | 32e23884cc424755531acc235228a7b2d4554fe1 (diff) | |
download | rails-5adb4a4dc26b113f7087e70463ce6ea121e65eb0.tar.gz rails-5adb4a4dc26b113f7087e70463ce6ea121e65eb0.tar.bz2 rails-5adb4a4dc26b113f7087e70463ce6ea121e65eb0.zip |
Fix typo. This test isn't executed in even postgresql.
Diffstat (limited to 'activerecord/test')
-rw-r--r-- | activerecord/test/cases/schema_dumper_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/cases/schema_dumper_test.rb b/activerecord/test/cases/schema_dumper_test.rb index a48ae1036f..32f86f9c88 100644 --- a/activerecord/test/cases/schema_dumper_test.rb +++ b/activerecord/test/cases/schema_dumper_test.rb @@ -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 |