aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authoryui-knk <spiketeika@gmail.com>2016-02-06 14:01:07 +0900
committeryui-knk <spiketeika@gmail.com>2016-02-06 14:01:07 +0900
commit3ee7bc87b1d96a4edf2e93f155b5b38568dabd0d (patch)
tree7d1cda3c5a740e8286308c678b88b072fdcc62c7 /activerecord
parent14037b8d8e96520a19afdac826fe660ab2e17239 (diff)
downloadrails-3ee7bc87b1d96a4edf2e93f155b5b38568dabd0d.tar.gz
rails-3ee7bc87b1d96a4edf2e93f155b5b38568dabd0d.tar.bz2
rails-3ee7bc87b1d96a4edf2e93f155b5b38568dabd0d.zip
[ci skip] Good bye SQLite2
Follow up of https://github.com/rails/rails/commit/c9feea6c9ab4494b0cb0b8cf4316847854f65af6
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/test/cases/migration_test.rb2
1 files changed, 0 insertions, 2 deletions
diff --git a/activerecord/test/cases/migration_test.rb b/activerecord/test/cases/migration_test.rb
index f51e366b1d..99e288c25b 100644
--- a/activerecord/test/cases/migration_test.rb
+++ b/activerecord/test/cases/migration_test.rb
@@ -192,8 +192,6 @@ class MigrationTest < ActiveRecord::TestCase
# of 0, they take on the compile-time limit for precision and scale,
# so the following should succeed unless you have used really wacky
# compilation options
- # - SQLite2 has the default behavior of preserving all data sent in,
- # so this happens there too
assert_kind_of BigDecimal, b.value_of_e
assert_equal BigDecimal("2.7182818284590452353602875"), b.value_of_e
elsif current_adapter?(:SQLite3Adapter)