aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2013-09-21 12:24:05 -0700
committerRafael Mendonça França <rafaelmfranca@gmail.com>2013-09-21 12:24:05 -0700
commit80008352675add5a6b4aaded715fc02329a02004 (patch)
treeeaee7628c12efc790b5c6eaf6d12286785b5599e
parentf7b294fcea8cad72231f13e9226cc18cda1cf43f (diff)
parent5adb4a4dc26b113f7087e70463ce6ea121e65eb0 (diff)
downloadrails-80008352675add5a6b4aaded715fc02329a02004.tar.gz
rails-80008352675add5a6b4aaded715fc02329a02004.tar.bz2
rails-80008352675add5a6b4aaded715fc02329a02004.zip
Merge pull request #12311 from kennyj/fix_typo_about_uuid
Fix typo. This test isn't executed even in the postgresql.
-rw-r--r--activerecord/test/cases/schema_dumper_test.rb2
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