Skip to content

Commit

Permalink
Fix error message spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
nigelhorne committed Feb 6, 2024
1 parent e7502e5 commit aca9c28
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ on:
tags-ignore:
- '*'
pull_request:
schedule:
- cron: '12 23 7 * *'
jobs:
build:
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -35,7 +37,13 @@ jobs:
cpanm -iqn --skip-satisfied Test::Pod::Spelling::CommonMistakes
cpanm -iqn --skip-satisfied Test::Portability::Files Test::Carp
cpanm -iqn --skip-satisfied --installdeps --notest .
- name: Make Module
run: |
# find . -name build.log | xargs cat
perl Makefile.PL
make
- name: Run Tests
run: prove -l -b t
env:
AUTHOR_TESTING: 1
AUTOMATED_TESTING: 1
2 changes: 1 addition & 1 deletion lib/Genealogy/ObituaryDailyTimes.pm
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ sub new {
$args{'directory'} = File::Spec->catfile($directory, 'data');
}
if(!-d $args{'directory'}) {
Carp::carp(__PACKAGE__, ': ', $args{'directory'}, 'is not a directory');
Carp::carp(__PACKAGE__, ': ', $args{'directory'}, ' is not a directory');
return;
}

Expand Down

0 comments on commit aca9c28

Please sign in to comment.