We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 52535ba + 8828d6a commit 02494e7Copy full SHA for 02494e7
ext/standard/tests/file/is_readable_basic.phpt
@@ -15,7 +15,7 @@ require __DIR__.'/file.inc';
15
echo "*** Testing is_readable(): basic functionality ***\n";
16
17
// create a file
18
-$filename = __DIR__."/is_readable.tmp";
+$filename = __DIR__."/is_readable_basic.tmp";
19
create_file($filename);
20
21
$counter = 1;
ext/standard/tests/file/is_readable_error.phpt
@@ -3,7 +3,7 @@ Test is_readable() function: error conditions
3
--FILE--
4
<?php
5
echo "\n*** Testing is_readable() on non-existent file ***\n";
6
-var_dump( is_readable(__DIR__."/is_readable.tmp") );
+var_dump( is_readable(__DIR__."/is_readable_error.tmp") );
7
8
echo "Done\n";
9
?>
0 commit comments