aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/support
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2016-11-20 05:47:08 +0900
committerRyuta Kamizono <kamipo@gmail.com>2016-11-20 05:47:30 +0900
commit8e1b28ad7f33128c8cbea955088950c41ab7c3be (patch)
treeb20059dfebf9ac996ac878aa452e6d21473929bc /activerecord/test/support
parent64127cde8c0bfff9b88710f83a8305f1ee96374b (diff)
downloadrails-8e1b28ad7f33128c8cbea955088950c41ab7c3be.tar.gz
rails-8e1b28ad7f33128c8cbea955088950c41ab7c3be.tar.bz2
rails-8e1b28ad7f33128c8cbea955088950c41ab7c3be.zip
Fix typo s/with/without/
Follow up to #27109.
Diffstat (limited to 'activerecord/test/support')
-rw-r--r--activerecord/test/support/config.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/support/config.rb b/activerecord/test/support/config.rb
index e1aa8d72e3..aaff408b41 100644
--- a/activerecord/test/support/config.rb
+++ b/activerecord/test/support/config.rb
@@ -27,7 +27,7 @@ module ARTest
def expand_config(config)
config["connections"].each do |adapter, connection|
dbs = [["arunit", "activerecord_unittest"], ["arunit2", "activerecord_unittest2"],
- ["arunit_with_prepared_statements", "activerecord_unittest"]]
+ ["arunit_without_prepared_statements", "activerecord_unittest"]]
dbs.each do |name, dbname|
unless connection[name].is_a?(Hash)
connection[name] = { "database" => connection[name] }