From 7d3a361656d3f6b8215fc183281d85c5729c77a1 Mon Sep 17 00:00:00 2001 From: Brandon Keepers Date: Mon, 22 Jan 2024 20:32:36 -0500 Subject: [PATCH] Try to load deprecator in 7.1 --- test/test_help_test.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/test_help_test.rb b/test/test_help_test.rb index 9fad86f..a5b1c50 100644 --- a/test/test_help_test.rb +++ b/test/test_help_test.rb @@ -1,4 +1,5 @@ -require "active_support/deprecator" +# Rails 7.1 fails if this is not loaded +require "active_support/deprecator" rescue nil require "active_support/test_case" require "minitest/autorun"