Index: trunk/t/DNSTest.pm
===================================================================
--- trunk/t/DNSTest.pm	(revision 965)
+++ trunk/t/DNSTest.pm	(revision 971)
@@ -66,7 +66,8 @@
 
   my ($rcount) = $dbh->selectrow_array("SELECT count(*) FROM records");
-  BAIL_OUT("# DB looks like it may not be a test DB, found $rcount > 30 records!\n")
-        if $rcount > 50;
-  cmp_ok( $rcount, '<=', 50, "record ($rcount): looks like a test DB" );
+  my $maxrecs = 60;
+  BAIL_OUT("# DB looks like it may not be a test DB, found $rcount > $maxrecs records!\n")
+        if $rcount > $maxrecs;
+  cmp_ok( $rcount, '<=', $maxrecs, "record ($rcount): looks like a test DB" );
 
   # drop all tables etc
