Skip to content

Commit e6a30f1

Browse files
committed
Make DB configuration RoR 5.1 compatible.
The configuration does not accept symbols as a keys anymore, since rails/rails@0a4f600, so the keys has to be strings. Alternatively, HashWithIndiferentAccess could be used instead of plain Hash. However, it is not clear if this RoR change was intentional.
1 parent 206cb17 commit e6a30f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/helper.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class ActiveSupport::TestCase
3030
ActiveRecord::Base.raise_in_transactional_callbacks = true
3131
end
3232

33-
ActiveRecord::Base.configurations = { "test" => { adapter: 'sqlite3', database: ':memory:' } }
33+
ActiveRecord::Base.configurations = { 'test' => { 'adapter' => 'sqlite3', 'database' => ':memory:' } }
3434
ActiveRecord::Base.establish_connection(:test)
3535

3636
ActiveRecord::Schema.verbose = false

0 commit comments

Comments
 (0)