fix thread test relying on . in @INC
Graham Knop [Sun, 16 Oct 2016 11:42:40 +0000 (07:42 -0400)]
t/02_thread.t

index ceac086..ceab7cd 100644 (file)
@@ -33,8 +33,8 @@ sub do_test {
     die "Argument passing failed!";
   }
 
-  delete $INC{'t/01_basic.t'};
-  do 't/01_basic.t';
+  delete $INC{'./t/01_basic.t'};
+  do './t/01_basic.t';
 
   1;
 }