From aec62f5ef16973c74aab91f64f25b3bbe861402f Mon Sep 17 00:00:00 2001 From: Graham Knop Date: Wed, 24 Dec 2025 09:53:27 +0100 Subject: [PATCH] fix version requirement in test module Version numbers on a use line need to be unquoted to be handled properly. When they are quoted, they are passed in import instead. Past versions of perl ignored these arguments, but future versions are intending to throw errors for arguments given to an undefined import method. --- t/lib/TestApp.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/lib/TestApp.pm b/t/lib/TestApp.pm index 8a420d2..fd22ca6 100644 --- a/t/lib/TestApp.pm +++ b/t/lib/TestApp.pm @@ -3,7 +3,7 @@ package TestApp; use strict; use warnings; -use Catalyst::Runtime '5.70'; +use Catalyst::Runtime 5.70; use FindBin; use Catalyst qw/ Session Session::State::Cookie Session::Store::File /;