You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by gb...@apache.org on 2019/03/05 07:45:08 UTC

svn commit: r1854815 - /spamassassin/trunk/t/urilocalbl.t

Author: gbechis
Date: Tue Mar  5 07:45:08 2019
New Revision: 1854815

URL: http://svn.apache.org/viewvc?rev=1854815&view=rev
Log:
revert previous, trunk has switched 
from Net::CIDR::Lite to Mail::SpamAssassin::NetSet

Modified:
    spamassassin/trunk/t/urilocalbl.t

Modified: spamassassin/trunk/t/urilocalbl.t
URL: http://svn.apache.org/viewvc/spamassassin/trunk/t/urilocalbl.t?rev=1854815&r1=1854814&r2=1854815&view=diff
==============================================================================
--- spamassassin/trunk/t/urilocalbl.t (original)
+++ spamassassin/trunk/t/urilocalbl.t Tue Mar  5 07:45:08 2019
@@ -15,7 +15,6 @@ use lib '.'; use lib 't';
 use SATest; sa_t_init("urilocalbl");
 
 $tests = 0;
-use constant HAS_CIDR_LITE => eval { require Net::CIDR::Lite; };
 eval { require GeoIP2::Database::Reader; $tests += 8; $has{GEOIP2}  = 1 };
 eval { require Geo::IP;                  $tests += 8; $has{GEOIP}   = 1 };
 eval { require IP::Country::DB_File;     $tests += 8; $has{DB_FILE} = 1 };
@@ -23,7 +22,6 @@ eval { require IP::Country::Fast;
 
 use Test::More;
 
-plan skip_all => "Net::CIDR::Lite not installed" unless HAS_CIDR_LITE;
 plan skip_all => "No supported GeoDB module installed" unless $tests;
 
 $net = conf_bool('run_net_tests');