aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/connections/native_postgresql/connection.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/test/connections/native_postgresql/connection.rb')
-rw-r--r--activerecord/test/connections/native_postgresql/connection.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/activerecord/test/connections/native_postgresql/connection.rb b/activerecord/test/connections/native_postgresql/connection.rb
index c9b00447f9..4dedf74040 100644
--- a/activerecord/test/connections/native_postgresql/connection.rb
+++ b/activerecord/test/connections/native_postgresql/connection.rb
@@ -9,16 +9,16 @@ db2 = 'activerecord_unittest2'
ActiveRecord::Base.establish_connection(
:adapter => "postgresql",
- :host => nil,
:username => "postgres",
:password => "postgres",
- :database => db1
+ :database => db1,
+ :min_messages => "warning"
)
Course.establish_connection(
:adapter => "postgresql",
- :host => nil,
:username => "postgres",
:password => "postgres",
- :database => db2
-) \ No newline at end of file
+ :database => db2,
+ :min_messages => "warning"
+)