Merge branch 'PHP-8.3'

* PHP-8.3:
  [skip ci] Fix more test tmp file conflicts
This commit is contained in:
Ilija Tovilo 2023-11-16 16:28:46 +01:00
commit 02494e7657
No known key found for this signature in database
GPG key ID: A4F5D403F118200A
2 changed files with 2 additions and 2 deletions

View file

@ -15,7 +15,7 @@ require __DIR__.'/file.inc';
echo "*** Testing is_readable(): basic functionality ***\n";
// create a file
$filename = __DIR__."/is_readable.tmp";
$filename = __DIR__."/is_readable_basic.tmp";
create_file($filename);
$counter = 1;

View file

@ -3,7 +3,7 @@ Test is_readable() function: error conditions
--FILE--
<?php
echo "\n*** Testing is_readable() on non-existent file ***\n";
var_dump( is_readable(__DIR__."/is_readable.tmp") );
var_dump( is_readable(__DIR__."/is_readable_error.tmp") );
echo "Done\n";
?>