From 2dd2b70994dd63391342f6435a6268e3b8ed9b51 Mon Sep 17 00:00:00 2001 From: Godfrey Chan Date: Fri, 10 Oct 2014 18:44:26 -0700 Subject: [PATCH] *Don't* silence the deprecation warnings in test This is actually where we are most likely to see it (and we should try to deal with those as soon as possible, ideally when upgrading). --- config/environments/test.rb | 2 -- 1 file changed, 2 deletions(-) diff --git a/config/environments/test.rb b/config/environments/test.rb index e63401fc8d7..b885d72ab32 100644 --- a/config/environments/test.rb +++ b/config/environments/test.rb @@ -40,7 +40,5 @@ Discourse::Application.configure do config.assets.compile = true config.assets.digest = false - # silence deprecation warnings in test config.eager_load = false - ActiveSupport::Deprecation.silenced = true end