diff options
author | Nikita Popov <nikita.ppv@gmail.com> | 2020-08-06 12:35:37 +0200 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2020-08-06 12:35:37 +0200 |
commit | b3f0f35fd7c6f87d1dbe36ce2c6b18e80c3d92f6 (patch) | |
tree | e24d7b893842125daaf4e23742f31d6292b21870 | |
parent | da56e87ecac3deb340da3a2410261100b4867122 (diff) | |
parent | a35379de2e5e9d2eb95714467e3e4274b3a79698 (diff) | |
download | php-git-b3f0f35fd7c6f87d1dbe36ce2c6b18e80c3d92f6.tar.gz |
Merge branch 'PHP-7.4'
* PHP-7.4:
Fix file clash in zlib test
-rw-r--r-- | ext/zlib/tests/gzseek_variation4.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/zlib/tests/gzseek_variation4.phpt b/ext/zlib/tests/gzseek_variation4.phpt index bb7a822add..09e38cd33d 100644 --- a/ext/zlib/tests/gzseek_variation4.phpt +++ b/ext/zlib/tests/gzseek_variation4.phpt @@ -8,7 +8,7 @@ if (!extension_loaded("zlib")) { ?> --FILE-- <?php -$f = "gzseek_variation5.gz"; +$f = "gzseek_variation4.gz"; $h = gzopen($f, 'w'); $str1 = "This is the first line."; $str2 = "This is the second line."; |