summaryrefslogtreecommitdiff
path: root/t/op/chdir.t
diff options
context:
space:
mode:
Diffstat (limited to 't/op/chdir.t')
-rw-r--r--t/op/chdir.t4
1 files changed, 1 insertions, 3 deletions
diff --git a/t/op/chdir.t b/t/op/chdir.t
index b9df30d40a..44bc90f14d 100644
--- a/t/op/chdir.t
+++ b/t/op/chdir.t
@@ -29,9 +29,7 @@ use File::Spec::Functions qw(:DEFAULT splitdir rel2abs splitpath);
# Can't use Cwd::abs_path() because it has different ideas about
# path separators than File::Spec.
sub abs_path {
- my $d = rel2abs(curdir);
- $d = lc($d) if $^O =~ /^uwin/;
- $d;
+ return rel2abs(curdir);
}
my $Cwd = abs_path;