Skip to content

Commit

Permalink
Drop down to v5.20 for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
briandfoy committed Nov 25, 2024
1 parent 6f4ee13 commit aabc0c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xt/validate-db.t
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use v5.26;
use v5.20;
use experimental qw(signatures);

use FindBin qw($RealBin);
Expand All @@ -19,7 +19,7 @@ subtest 'sanity' => sub {
);

foreach my $row ( @classes ) {
my( $c, @m ) = $row->@*;
my( $c, @m ) = @$row;

use_ok $c or BAIL_OUT( "$c did not compile" );
can_ok $c, @m;
Expand Down

0 comments on commit aabc0c6

Please sign in to comment.