aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/adapters/postgresql/bit_string_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/test/cases/adapters/postgresql/bit_string_test.rb')
-rw-r--r--activerecord/test/cases/adapters/postgresql/bit_string_test.rb2
1 files changed, 0 insertions, 2 deletions
diff --git a/activerecord/test/cases/adapters/postgresql/bit_string_test.rb b/activerecord/test/cases/adapters/postgresql/bit_string_test.rb
index 52fa46bd01..6c6b4dc22a 100644
--- a/activerecord/test/cases/adapters/postgresql/bit_string_test.rb
+++ b/activerecord/test/cases/adapters/postgresql/bit_string_test.rb
@@ -30,7 +30,6 @@ class PostgresqlBitStringTest < ActiveRecord::TestCase
assert_not column.array?
type = PostgresqlBitString.type_for_attribute("a_bit")
- assert_not type.number?
assert_not type.binary?
end
@@ -41,7 +40,6 @@ class PostgresqlBitStringTest < ActiveRecord::TestCase
assert_not column.array?
type = PostgresqlBitString.type_for_attribute("a_bit_varying")
- assert_not type.number?
assert_not type.binary?
end