diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2006-12-04 12:44:19 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2006-12-04 12:44:19 +0000 |
commit | 062defe10f205b1cb9d93bbabc06f3279850a6ad (patch) | |
tree | ce2819635942363928a1e63877bb1d0d5fbcb84a /t/helper.pm | |
parent | 9c5899818f764900d5cc2d98c78fa3289233acbe (diff) | |
download | urpmi-062defe10f205b1cb9d93bbabc06f3279850a6ad.tar urpmi-062defe10f205b1cb9d93bbabc06f3279850a6ad.tar.gz urpmi-062defe10f205b1cb9d93bbabc06f3279850a6ad.tar.bz2 urpmi-062defe10f205b1cb9d93bbabc06f3279850a6ad.tar.xz urpmi-062defe10f205b1cb9d93bbabc06f3279850a6ad.zip |
fix typo
Diffstat (limited to 't/helper.pm')
-rw-r--r-- | t/helper.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/helper.pm b/t/helper.pm index 10449300..e76d1396 100644 --- a/t/helper.pm +++ b/t/helper.pm @@ -29,7 +29,7 @@ sub httpd_port { 6969 } sub start_httpd() { $server_pid = fork(); if ($server_pid == 0) { - exec './simple-httpd', $pwd, "$pwd/tmp", httpd_port(); + exec './simple-httpd', $::pwd, "$::pwd/tmp", httpd_port(); exit 1; } 'http://localhost:' . httpd_port(); |