aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/attributes_test.rb
diff options
context:
space:
mode:
authorSean Griffin <sean@thoughtbot.com>2015-07-20 09:22:30 -0600
committerSean Griffin <sean@thoughtbot.com>2015-07-20 09:22:30 -0600
commit17b846004d63f94b09b1a86986d9bfb3d64dda2a (patch)
treed7825b3272383ae05087f2ce2a2f5ea684e18c67 /activerecord/test/cases/attributes_test.rb
parentc0f79be895796562e38e3fbd35d2741ee3fb85a5 (diff)
downloadrails-17b846004d63f94b09b1a86986d9bfb3d64dda2a.tar.gz
rails-17b846004d63f94b09b1a86986d9bfb3d64dda2a.tar.bz2
rails-17b846004d63f94b09b1a86986d9bfb3d64dda2a.zip
Fix minor typo in test name
Diffstat (limited to 'activerecord/test/cases/attributes_test.rb')
-rw-r--r--activerecord/test/cases/attributes_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/cases/attributes_test.rb b/activerecord/test/cases/attributes_test.rb
index eeda9335ad..bd74821d87 100644
--- a/activerecord/test/cases/attributes_test.rb
+++ b/activerecord/test/cases/attributes_test.rb
@@ -142,7 +142,7 @@ module ActiveRecord
end
if current_adapter?(:PostgreSQLAdapter)
- test "arrays types can be specified" do
+ test "array types can be specified" do
klass = Class.new(OverloadedType) do
attribute :my_array, :string, limit: 50, array: true
attribute :my_int_array, :integer, array: true