[skip ci] Fix more test tmp file conflicts

This commit is contained in:
Ilija Tovilo 2023-11-16 16:28:12 +01:00 committed by Ben Ramsey
parent 2312637496
commit 05ba461524
No known key found for this signature in database
GPG key ID: F9C39DC0B9698544
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";
?>