summaryrefslogtreecommitdiffstats
path: root/t
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2006-12-04 12:44:19 +0000
committerPascal Rigaux <pixel@mandriva.com>2006-12-04 12:44:19 +0000
commit062defe10f205b1cb9d93bbabc06f3279850a6ad (patch)
treece2819635942363928a1e63877bb1d0d5fbcb84a /t
parent9c5899818f764900d5cc2d98c78fa3289233acbe (diff)
downloadurpmi-062defe10f205b1cb9d93bbabc06f3279850a6ad.tar
urpmi-062defe10f205b1cb9d93bbabc06f3279850a6ad.tar.gz
urpmi-062defe10f205b1cb9d93bbabc06f3279850a6ad.tar.bz2
urpmi-062defe10f205b1cb9d93bbabc06f3279850a6ad.tar.xz
urpmi-062defe10f205b1cb9d93bbabc06f3279850a6ad.zip
fix typo
Diffstat (limited to 't')
-rw-r--r--t/helper.pm2
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();