From 494496d8de21fc3e6d4e0290cfa9c6989421acb9 Mon Sep 17 00:00:00 2001 From: Mateusz Grotek Date: Thu, 17 Oct 2024 14:26:14 +0100 Subject: [PATCH] Set action_dispatch.show_exceptions to :none false is a deprecated setting for this option https://guides.rubyonrails.org/7_1_release_notes.html --- config/environments/test.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/environments/test.rb b/config/environments/test.rb index 42d4062ae..1998bce13 100644 --- a/config/environments/test.rb +++ b/config/environments/test.rb @@ -29,7 +29,7 @@ config.cache_store = :null_store # Raise exceptions instead of rendering exception templates. - config.action_dispatch.show_exceptions = false + config.action_dispatch.show_exceptions = :none # Disable request forgery protection in test environment. config.action_controller.allow_forgery_protection = false