From: Dagfinn Ilmari Mannsåker Date: Fri, 31 Jan 2020 17:37:11 +0000 (+0000) Subject: Remove explicit Exporter inheritace in SQL::Abstract::Test X-Git-Tag: v1.87~3 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=ba3f5e40b135c70b784e921f2733f033294b167a;p=dbsrgits%2FSQL-Abstract.git Remove explicit Exporter inheritace in SQL::Abstract::Test Test:::Builder::Module is documented to inherit from Exporter. --- diff --git a/lib/SQL/Abstract/Test.pm b/lib/SQL/Abstract/Test.pm index 8aa6f3e..d44ef53 100644 --- a/lib/SQL/Abstract/Test.pm +++ b/lib/SQL/Abstract/Test.pm @@ -2,7 +2,7 @@ package SQL::Abstract::Test; # see doc at end of file use strict; use warnings; -use base qw(Test::Builder::Module Exporter); +use base qw(Test::Builder::Module); use Test::Builder; use Test::Deep (); use SQL::Abstract::Tree;