aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/adapters/postgresql/bit_string_test.rb
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2014-06-03 17:56:57 +0200
committerYves Senn <yves.senn@gmail.com>2014-06-03 17:56:57 +0200
commit4bcf9029452e0c760af04faab6b549710401e8cf (patch)
tree7ba2e925c8e3fb95b739069751fd1a6362d8a0bf /activerecord/test/cases/adapters/postgresql/bit_string_test.rb
parent9e86428d23074f4b5edb5a40bb6e72d9ecacfee4 (diff)
downloadrails-4bcf9029452e0c760af04faab6b549710401e8cf.tar.gz
rails-4bcf9029452e0c760af04faab6b549710401e8cf.tar.bz2
rails-4bcf9029452e0c760af04faab6b549710401e8cf.zip
test pg, remove unused column assignments. Follow up to 254cdf47
Diffstat (limited to 'activerecord/test/cases/adapters/postgresql/bit_string_test.rb')
-rw-r--r--activerecord/test/cases/adapters/postgresql/bit_string_test.rb3
1 files changed, 0 insertions, 3 deletions
diff --git a/activerecord/test/cases/adapters/postgresql/bit_string_test.rb b/activerecord/test/cases/adapters/postgresql/bit_string_test.rb
index 003573fda6..667468837f 100644
--- a/activerecord/test/cases/adapters/postgresql/bit_string_test.rb
+++ b/activerecord/test/cases/adapters/postgresql/bit_string_test.rb
@@ -42,10 +42,7 @@ class PostgresqlBitStringTest < ActiveRecord::TestCase
end
def test_default
- column = PostgresqlBitString.columns_hash["a_bit"]
assert_equal "00000011", PostgresqlBitString.new.a_bit
-
- column = PostgresqlBitString.columns_hash["a_bit_varying"]
assert_equal "0011", PostgresqlBitString.new.a_bit_varying
end