You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by jm...@apache.org on 2004/10/14 03:00:47 UTC

svn commit: rev 54765 - spamassassin/trunk/t

Author: jm
Date: Wed Oct 13 18:00:46 2004
New Revision: 54765

Modified:
   spamassassin/trunk/t/memory_cycles.t
Log:
oops, a 'use' got left in

Modified: spamassassin/trunk/t/memory_cycles.t
==============================================================================
--- spamassassin/trunk/t/memory_cycles.t	(original)
+++ spamassassin/trunk/t/memory_cycles.t	Wed Oct 13 18:00:46 2004
@@ -63,16 +63,15 @@
 # Test::Memory::Cycle would be a nice way to do this -- but it relies
 # on Test::More.  so just do it ourselves.
 
-use Devel::Cycle;
 our $cycles;
 
 sub check_for_cycles {
   my $obj = shift;
   $cycles = 0;
-  find_cycle ($obj, \&cyclecb);
+  Devel::Cycle::find_cycle ($obj, \&cyclecb);
   if ($cycles) {
     print "found $cycles cycles! dump to follow:\n";
-    find_cycle ($obj);  # with default output-to-stdout callback
+    Devel::Cycle::find_cycle ($obj);  # with default output-to-stdout callback
     return 0;
   } else {
     return 1;