From: Nikita Popov Date: Wed, 26 Aug 2020 10:32:06 +0000 (+0200) Subject: Fix file name clash in test X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=358721bcf75be6bd2020f8d65c19887823b49377;p=php Fix file name clash in test --- diff --git a/ext/standard/tests/file/stream_copy_to_stream.phpt b/ext/standard/tests/file/stream_copy_to_stream.phpt index b0c2d13846..1f34b84334 100644 --- a/ext/standard/tests/file/stream_copy_to_stream.phpt +++ b/ext/standard/tests/file/stream_copy_to_stream.phpt @@ -5,7 +5,7 @@ stream_copy_to_stream() tests define('WIN', substr(PHP_OS, 0, 3) == 'WIN'); $initial_file = __DIR__.'/bug38086.txt'; -$new_file = __DIR__.'/bug38086_1.txt'; +$new_file = __DIR__.'/stream_copy_to_stream.txt'; $src = fopen($initial_file, 'r'); stream_filter_append($src, "string.rot13", STREAM_FILTER_READ);