From: Graham Knop Date: Sun, 16 Oct 2016 11:16:38 +0000 (-0400) Subject: fix thread test with @INC lacks . X-Git-Tag: v0.14~5 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FDevel-GlobalDestruction.git;a=commitdiff_plain;h=192ddfb29b6066799540c78454f0bf4720f9c1dd fix thread test with @INC lacks . --- diff --git a/t/02_thread.t b/t/02_thread.t index 4a7b6d0..196cd0a 100644 --- a/t/02_thread.t +++ b/t/02_thread.t @@ -41,8 +41,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; }