diff options
author | Nicholas Clark <nick@ccl4.org> | 2009-11-18 09:52:12 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2009-11-18 09:52:12 +0000 |
commit | 79ff69f3f0afea45ad1d7e28fe7df52129df3f81 (patch) | |
tree | bef05603966105374a32486d65119e9b11253dba | |
parent | 613f422f899872b39e45f0f48c3285ac4cece8c7 (diff) | |
download | perl-79ff69f3f0afea45ad1d7e28fe7df52129df3f81.tar.gz |
Correct the arguments to MBTest->tmpdir() to reflect implementation changes.
-rw-r--r-- | cpan/Module-Build/t/xs.t | 2 |
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) ); } |