Skip to content

Commit cc5f0b9

Browse files
committed
Mylogger needs error()
1 parent 8ee9ab0 commit cc5f0b9

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

.github/workflows/dashboard.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,9 @@ jobs:
7474
env:
7575
PERL5LIB: ${{ github.workspace }}/local/lib/perl5
7676
COVER_VERBOSE: 1
77+
AUTOMATED_TESTING: 1
78+
NO_NETWORK_TESTING: 1
79+
NONINTERACTIVE_TESTING: 1
7780
working-directory: ${{ github.workspace }}
7881
run: |
7982
perl Makefile.PL

t/lib/MyLogger.pm

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ sub warn {
1919
debug(@_);
2020
}
2121

22+
sub warn {
23+
error(@_);
24+
}
25+
2226
sub debug {
2327
my $self = shift;
2428

0 commit comments

Comments
 (0)