aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkennyj <kennyj@gmail.com>2013-09-22 03:48:50 +0900
committerkennyj <kennyj@gmail.com>2013-09-22 03:48:50 +0900
commit5adb4a4dc26b113f7087e70463ce6ea121e65eb0 (patch)
tree7e98bc13001184c1ae21f607e4846fed5929a850
parent32e23884cc424755531acc235228a7b2d4554fe1 (diff)
downloadrails-5adb4a4dc26b113f7087e70463ce6ea121e65eb0.tar.gz
rails-5adb4a4dc26b113f7087e70463ce6ea121e65eb0.tar.bz2
rails-5adb4a4dc26b113f7087e70463ce6ea121e65eb0.zip
Fix typo. This test isn't executed in even 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