diff options
-rwxr-xr-x | t/01-test.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/01-test.t b/t/01-test.t index ee7e1fb..2816a59 100755 --- a/t/01-test.t +++ b/t/01-test.t @@ -44,7 +44,7 @@ is($config{LOCAL_OVERRIDES}, 'FALSE', 'config{LOCAL_OVERRIDES} is good'); # 7: open_read, open_fh tests { - my $fh = open_read('./test.t'); + my $fh = open_read(__FILE__); is(ref $fh, 'GLOB', 'open_read works'); close $fh; } |