From: Graham Knop Date: Sun, 16 Oct 2016 11:42:40 +0000 (-0400) Subject: fix thread test relying on . in @INC X-Git-Tag: v0.03~3 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FDevel-GlobalDestruction-XS.git;a=commitdiff_plain;h=ef104b18010e2cf7f2c4a33f62ea01f7e30537e7 fix thread test relying on . in @INC --- diff --git a/t/02_thread.t b/t/02_thread.t index ceac086..ceab7cd 100644 --- a/t/02_thread.t +++ b/t/02_thread.t @@ -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; }