aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/adapters/postgresql/array_test.rb
diff options
context:
space:
mode:
authorCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2013-12-19 19:14:05 -0200
committerCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2013-12-19 19:14:23 -0200
commite4cde5d58cbb09d1843796f96ba86225ff94fe05 (patch)
tree19570cf8dba4ae2da0a0ca93f65f25a98d498aae /activerecord/test/cases/adapters/postgresql/array_test.rb
parent04ad814bb992e854927c1bec3422df882f017ab6 (diff)
downloadrails-e4cde5d58cbb09d1843796f96ba86225ff94fe05.tar.gz
rails-e4cde5d58cbb09d1843796f96ba86225ff94fe05.tar.bz2
rails-e4cde5d58cbb09d1843796f96ba86225ff94fe05.zip
Fix indent in PG array tests
[ci skip]
Diffstat (limited to 'activerecord/test/cases/adapters/postgresql/array_test.rb')
-rw-r--r--activerecord/test/cases/adapters/postgresql/array_test.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/activerecord/test/cases/adapters/postgresql/array_test.rb b/activerecord/test/cases/adapters/postgresql/array_test.rb
index 9536cceb1d..06901a8990 100644
--- a/activerecord/test/cases/adapters/postgresql/array_test.rb
+++ b/activerecord/test/cases/adapters/postgresql/array_test.rb
@@ -10,12 +10,12 @@ class PostgresqlArrayTest < ActiveRecord::TestCase
def setup
@connection = ActiveRecord::Base.connection
- @connection.transaction do
- @connection.create_table('pg_arrays') do |t|
- t.string 'tags', array: true
- t.integer 'ratings', array: true
- end
+ @connection.transaction do
+ @connection.create_table('pg_arrays') do |t|
+ t.string 'tags', array: true
+ t.integer 'ratings', array: true
end
+ end
@column = PgArray.columns.find { |c| c.name == 'tags' }
end