diff options
author | kennyj <kennyj@gmail.com> | 2013-07-10 00:56:55 +0900 |
---|---|---|
committer | kennyj <kennyj@gmail.com> | 2013-07-10 02:16:27 +0900 |
commit | 51e165808b8fdb0323d50aa7de973303224b7c7b (patch) | |
tree | 1d634a5b330adb4a208bcd64796979a7cc688b72 /activerecord/test | |
parent | 54eee8b5f28e05376626e98650d4bde8b8451603 (diff) | |
download | rails-51e165808b8fdb0323d50aa7de973303224b7c7b.tar.gz rails-51e165808b8fdb0323d50aa7de973303224b7c7b.tar.bz2 rails-51e165808b8fdb0323d50aa7de973303224b7c7b.zip |
Fix typo.
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 |