Skip to content

Commit 7b2aad0

Browse files
committed
Use the correct formatter
1 parent fcd12e0 commit 7b2aad0

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

Build.PL

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,12 @@ use builder::custom;
1414
use File::Basename;
1515
use File::Spec;
1616

17-
my $tap_harness_args = (
17+
my $tap_harness_args = {
1818
"verbosity" => 1,
1919
"merge" => 1,
20-
"formatter" => "TAP::Formatter::GitHubActions",
21-
);
20+
"formatter_class" => "TAP::Formatter::GitHubActions",
21+
22+
};
2223

2324
my %args = (
2425
license => 'perl_5',
@@ -56,7 +57,7 @@ my %args = (
5657

5758
test_files => ((-d '.git' || $ENV{RELEASE_TESTING}) && -d 'xt') ? 't/ xt/' : 't/',
5859
recursive_test_files => 1,
59-
test_harness_args => $tap_harness_args,
60+
tap_harness_args => $tap_harness_args,
6061
);
6162

6263
if (-d 'share') {

0 commit comments

Comments
 (0)