diff options
author | Heiko Schlittermann (HS12-RIPE) <hs@schlittermann.de> | 2016-11-03 10:15:16 +0100 |
---|---|---|
committer | Heiko Schlittermann (HS12-RIPE) <hs@schlittermann.de> | 2016-11-03 10:15:16 +0100 |
commit | b1227303735a346c79fd0734c9efb5d13609ad55 (patch) | |
tree | f5932b85100a5e9b890ba8b4484e5eec05f9afa2 /test/lib | |
parent | 100122504d03e5583b8321f939d4f688ab16886c (diff) |
Testsuite: Add more tests to Exim::Runtest tests
Diffstat (limited to 'test/lib')
-rw-r--r-- | test/lib/Exim/Runtest.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lib/Exim/Runtest.pm b/test/lib/Exim/Runtest.pm index e60fce1e6..845388b8b 100644 --- a/test/lib/Exim/Runtest.pm +++ b/test/lib/Exim/Runtest.pm @@ -23,7 +23,7 @@ for the F<runtest> script. No functions are exported yet. =cut sub mailgroup { - my $group = shift; + my $group = shift // croak "Need a default group name."; croak "Need a group *name*, not a numeric group id." if $group =~ /^\d+$/; |