summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStanislav Malyshev <stas@php.net>2015-09-01 00:59:31 -0700
committerStanislav Malyshev <stas@php.net>2015-09-01 00:59:31 -0700
commit906f19f1365488f90f7473e833a7a13f2c1387ac (patch)
tree302b1eca6c1029d75b373897656c4e12a8acab9b
parentc8f07ad4771620252bf542e09938633bfb837363 (diff)
downloadphp-git-906f19f1365488f90f7473e833a7a13f2c1387ac.tar.gz
fix test
-rw-r--r--ext/zip/tests/bug70350.phpt2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/zip/tests/bug70350.phpt b/ext/zip/tests/bug70350.phpt
index c308f549cf..d81de65a32 100644
--- a/ext/zip/tests/bug70350.phpt
+++ b/ext/zip/tests/bug70350.phpt
@@ -15,7 +15,7 @@ $archive->addEmptyDir("../down2/");
$archive->close();
$archive2 = new ZipArchive();
-$archive2->open('a.zip');
+$archive2->open("$dir/a.zip");
$archive2->extractTo($dir);
$archive2->close();
var_dump(file_exists("$dir/down2/"));