diff options
author | Sean Griffin <sean@thoughtbot.com> | 2015-07-20 09:22:30 -0600 |
---|---|---|
committer | Sean Griffin <sean@thoughtbot.com> | 2015-07-20 09:22:30 -0600 |
commit | 17b846004d63f94b09b1a86986d9bfb3d64dda2a (patch) | |
tree | d7825b3272383ae05087f2ce2a2f5ea684e18c67 /activerecord | |
parent | c0f79be895796562e38e3fbd35d2741ee3fb85a5 (diff) | |
download | rails-17b846004d63f94b09b1a86986d9bfb3d64dda2a.tar.gz rails-17b846004d63f94b09b1a86986d9bfb3d64dda2a.tar.bz2 rails-17b846004d63f94b09b1a86986d9bfb3d64dda2a.zip |
Fix minor typo in test name
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/test/cases/attributes_test.rb | 2 |
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 |