Switch several caller() invocations to explicit CORE::caller()
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Util.pm
index 985e072..c7aa432 100644 (file)
@@ -53,7 +53,7 @@ sub stacktrace {
   $frame++;
   my (@stack, @frame);
 
-  while (@frame = caller($frame++)) {
+  while (@frame = CORE::caller($frame++)) {
     push @stack, [@frame[3,1,2]];
   }