Skip to content

Commit

Permalink
Merge pull request rails#27112 from kamipo/follow-up-27109
Browse files Browse the repository at this point in the history
Fix typo s/with/without/
  • Loading branch information
kaspth authored Nov 19, 2016
2 parents 64127cd + 8e1b28a commit e7aeafc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ class PreparedStatementsTest < ActiveRecord::PostgreSQLTestCase
fixtures :developers

def setup
@conn = ActiveRecord::Base.establish_connection :arunit_with_prepared_statements
@conn = ActiveRecord::Base.establish_connection :arunit_without_prepared_statements
end

def teardown
Expand Down
2 changes: 1 addition & 1 deletion activerecord/test/support/config.rb
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def read_config
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] }
Expand Down

0 comments on commit e7aeafc

Please sign in to comment.