summaryrefslogtreecommitdiff
path: root/lib/File/Spec/t/Spec.t
diff options
context:
space:
mode:
Diffstat (limited to 'lib/File/Spec/t/Spec.t')
-rw-r--r--lib/File/Spec/t/Spec.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/File/Spec/t/Spec.t b/lib/File/Spec/t/Spec.t
index f3e49f03c3..eb6a719799 100644
--- a/lib/File/Spec/t/Spec.t
+++ b/lib/File/Spec/t/Spec.t
@@ -214,7 +214,7 @@ if ($^O eq 'MacOS') {
[ "Win32->canonpath('/a/b/c/../../d')", '\\a\\d' ],
[ "Win32->canonpath('/a/b/c/.../d')", '\\a\\d' ],
[ "Win32->canonpath('\\../temp\\')", '\\temp' ],
-[ "Win32->can('cwd')", qr/CODE/ ],
+[ "Win32->can('_cwd')", qr/CODE/ ],
# FakeWin32 subclass (see below) just sets CWD to C:\one\two
@@ -540,7 +540,7 @@ plan tests => scalar @tests;
{
@File::Spec::FakeWin32::ISA = qw(File::Spec::Win32);
- sub File::Spec::FakeWin32::cwd { 'C:\\one\\two' }
+ sub File::Spec::FakeWin32::_cwd { 'C:\\one\\two' }
}