aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2010-06-09 03:03:45 -0300
committerJosé Valim <jose.valim@gmail.com>2010-06-09 10:06:24 +0200
commitcfacae1a7d85849f0b4f71f0cfd4f42ad3ff90a4 (patch)
treef42a03853d7d665a86e04ba08c94a526f5043790
parent0919c0dbca3df02f5cfff7dde4f61b85ef16d886 (diff)
downloadrails-cfacae1a7d85849f0b4f71f0cfd4f42ad3ff90a4.tar.gz
rails-cfacae1a7d85849f0b4f71f0cfd4f42ad3ff90a4.tar.bz2
rails-cfacae1a7d85849f0b4f71f0cfd4f42ad3ff90a4.zip
SQLite2Adapter doesn't exist
Signed-off-by: José Valim <jose.valim@gmail.com>
-rw-r--r--activerecord/test/cases/migration_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/cases/migration_test.rb b/activerecord/test/cases/migration_test.rb
index 1edec66c25..ddadde8dcf 100644
--- a/activerecord/test/cases/migration_test.rb
+++ b/activerecord/test/cases/migration_test.rb
@@ -1019,7 +1019,7 @@ if ActiveRecord::Base.connection.supports_migrations?
# This one is fun. The 'value_of_e' field is defined as 'DECIMAL' with
# precision/scale explicitly left out. By the SQL standard, numbers
# assigned to this field should be truncated but that's seldom respected.
- if current_adapter?(:PostgreSQLAdapter, :SQLite2Adapter)
+ if current_adapter?(:PostgreSQLAdapter)
# - PostgreSQL changes the SQL spec on columns declared simply as
# "decimal" to something more useful: instead of being given a scale
# of 0, they take on the compile-time limit for precision and scale,