Skip to content

Commit

Permalink
fixup! Use lowercase for implicit_current_dir option
Browse files Browse the repository at this point in the history
  • Loading branch information
zmughal committed Oct 15, 2022
1 parent 808f417 commit 866ad9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion t/file_which.t
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ unless (File::Which::_is_vms() or File::Which::_is_mac() or File::Which::_is_win
local $ENV{PATH} = $ENV{PATH};

# Where is the test application
my $test_bin = File::Spec->catdir( 'corpus', ( $^O =~ /^(MSWin32|dos|os2)$/ ? 'test-bin-win' : 'test-bin-unix' ) );
my $test_bin = File::Spec->catdir( 'corpus', $^O =~ /^(MSWin32|dos|os2)$/ ? 'test-bin-win' : 'test-bin-unix' );
ok( -d $test_bin, 'Found test-bin' );

# Set up for running the test application
Expand Down

0 comments on commit 866ad9f

Please sign in to comment.