summaryrefslogtreecommitdiff
path: root/cpan/Module-Build
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2009-11-18 09:52:12 +0000
committerNicholas Clark <nick@ccl4.org>2009-11-18 09:52:12 +0000
commit79ff69f3f0afea45ad1d7e28fe7df52129df3f81 (patch)
treebef05603966105374a32486d65119e9b11253dba /cpan/Module-Build
parent613f422f899872b39e45f0f48c3285ac4cece8c7 (diff)
downloadperl-79ff69f3f0afea45ad1d7e28fe7df52129df3f81.tar.gz
Correct the arguments to MBTest->tmpdir() to reflect implementation changes.
Diffstat (limited to 'cpan/Module-Build')
-rw-r--r--cpan/Module-Build/t/xs.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpan/Module-Build/t/xs.t b/cpan/Module-Build/t/xs.t
index 6d167c8539..9471c1ab95 100644
--- a/cpan/Module-Build/t/xs.t
+++ b/cpan/Module-Build/t/xs.t
@@ -24,7 +24,7 @@ blib_load('Module::Build');
plan tests => 20;
}
require Cwd;
- $tmp = MBTest->tmpdir( $tmp_exec ? undef : Cwd::cwd );
+ $tmp = MBTest->tmpdir( $tmp_exec ? () : (DIR => Cwd::cwd) );
}