Skip to content

Commit 2371c65

Browse files
committed
Fix file name clash in zlib tests
1 parent 33e8a7b commit 2371c65

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ext/zlib/tests/gzrewind_variation1.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ if (!extension_loaded("zlib")) {
88
?>
99
--FILE--
1010
<?php
11-
$f = "temp2.txt.gz";
11+
$f = "gzrewind_variation1.txt.gz";
1212
$h = gzopen($f, 'w');
1313
gzwrite($h, 'The first string.');
1414
var_dump(gzrewind($h));

ext/zlib/tests/gztell_basic2.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ if (!extension_loaded("zlib")) {
88
?>
99
--FILE--
1010
<?php
11-
$f = "temp2.txt.gz";
11+
$f = "gztell_basic2.txt.gz";
1212
$h = gzopen($f, 'w');
1313
$sizes = array(7, 22, 54, 17, 27, 15, 1000);
1414
// tell should be 7, 29, 83, 100, 127, 142, 1142

0 commit comments

Comments
 (0)