summaryrefslogtreecommitdiff
path: root/ext/standard/tests/file/file.inc
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/tests/file/file.inc')
-rw-r--r--ext/standard/tests/file/file.inc6
1 files changed, 2 insertions, 4 deletions
diff --git a/ext/standard/tests/file/file.inc b/ext/standard/tests/file/file.inc
index a18fd2ceb4..efb425ca42 100644
--- a/ext/standard/tests/file/file.inc
+++ b/ext/standard/tests/file/file.inc
@@ -7,7 +7,7 @@
delete_links() : delete links
fill_files() : fill file with specified contents
change_file_perms() : Change permission of files
- fill_buffer() : fill buffer with specified contents
+ fill_buffer() : fills buffer with specified contents
compare_self_stat() : compares the first 13 elements of the
stat with the corresponding named key values of
the same stat.
@@ -80,7 +80,7 @@ function fill_buffer(&$buffer, $fill_type, $fill_size) {
}
/*
- Function : bool fill_file(resource $file_handle, string $fill_type, int $file_size);
+ Function : bool fill_file(resource $file_handle, string $fill_type, string $file_size);
Description: Fills the file with data as specified with requested size.
$file_handle = file handle, opened with write options,
$fill_type:
@@ -638,8 +638,6 @@ function compare_stats($stat1, $stat2, $fields, $op = "==", $flag = false ) {
// if the result is false(i.e values are not as expected),
// dump the stat array so that easy to figure out the error
if ( $result == false ) {
- echo "\n Dumping diff between stat array 1 and 2...\n";
- var_dump(array_diff($stat1, $stat2));
echo "\n Dumping stat array 1...\n";
var_dump($stat1);
echo "\n Dumping stat array 2...\n";