From 80ab370b1331a21b3791334f4e1efd485c0f3cdd Mon Sep 17 00:00:00 2001 From: Graham Knop Date: Mon, 28 Aug 2023 01:53:49 +0200 Subject: [PATCH] fix version requirement to use correct syntax Version numbers on a use line need to be unquoted to be handled properly. When they are quoted, they are passed in import instead. Part 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 48ca856..fb4ee8e 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 parent qw/Catalyst/;