Skip to content

Commit 02494e7

Browse files
committed
Merge branch 'PHP-8.3'
* PHP-8.3: [skip ci] Fix more test tmp file conflicts
2 parents 52535ba + 8828d6a commit 02494e7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ext/standard/tests/file/is_readable_basic.phpt

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ require __DIR__.'/file.inc';
1515
echo "*** Testing is_readable(): basic functionality ***\n";
1616

1717
// create a file
18-
$filename = __DIR__."/is_readable.tmp";
18+
$filename = __DIR__."/is_readable_basic.tmp";
1919
create_file($filename);
2020

2121
$counter = 1;

ext/standard/tests/file/is_readable_error.phpt

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Test is_readable() function: error conditions
33
--FILE--
44
<?php
55
echo "\n*** Testing is_readable() on non-existent file ***\n";
6-
var_dump( is_readable(__DIR__."/is_readable.tmp") );
6+
var_dump( is_readable(__DIR__."/is_readable_error.tmp") );
77

88
echo "Done\n";
99
?>

0 commit comments

Comments
 (0)