summaryrefslogtreecommitdiff
path: root/ext/zip/tests/bug47667.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/zip/tests/bug47667.phpt')
-rw-r--r--ext/zip/tests/bug47667.phpt2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/zip/tests/bug47667.phpt b/ext/zip/tests/bug47667.phpt
index 749a5ef6b8..6914b5b109 100644
--- a/ext/zip/tests/bug47667.phpt
+++ b/ext/zip/tests/bug47667.phpt
@@ -21,7 +21,7 @@ for ($i = 0; $i < 10; $i++) {
$zip = new ZipArchive();
if ($zip->open($filename, ZipArchive::OVERWRITE) !== true) {
exit("Unable to open the zip file");
- }
+ }
$zip->addFromString("foo_{$i}.txt", 'foo bar foobar');
$zip->close();
}