diff options
author | Heiko Schlittermann (HS12-RIPE) <hs@schlittermann.de> | 2016-11-05 00:57:23 +0100 |
---|---|---|
committer | Heiko Schlittermann (HS12-RIPE) <hs@schlittermann.de> | 2016-11-05 00:58:32 +0100 |
commit | d54f95770344279e0fa76fa37524bc7dba42b244 (patch) | |
tree | d78972f5c6a68981c033b5afa4ed7fba4d0a3542 | |
parent | f6f239461fd62b3a4f3142b6b2a85f8f65eee486 (diff) |
Testsuite: use @ISA instead of 'parent'
Use parent is available on Perl >= 5.10.1, some old CentOS
do not have it.
-rw-r--r-- | test/lib/Exim/Runtest.pm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/lib/Exim/Runtest.pm b/test/lib/Exim/Runtest.pm index bdf9c60d6..32537f543 100644 --- a/test/lib/Exim/Runtest.pm +++ b/test/lib/Exim/Runtest.pm @@ -7,7 +7,9 @@ use IO::Socket::INET; use Cwd; use Carp; -use parent 'Exporter'; +use Exporter; +our @ISA = qw(Exporter); + our @EXPORT_OK = qw(mailgroup dynamic_socket exim_binary flavour flavours); our %EXPORT_TAGS = ( all => \@EXPORT_OK, |