summaryrefslogtreecommitdiff
path: root/ext/standard/tests/file/fwrite_basic-win32.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/tests/file/fwrite_basic-win32.phpt')
-rw-r--r--ext/standard/tests/file/fwrite_basic-win32.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/tests/file/fwrite_basic-win32.phpt b/ext/standard/tests/file/fwrite_basic-win32.phpt
index d1655a7b6d..be6b8e758f 100644
--- a/ext/standard/tests/file/fwrite_basic-win32.phpt
+++ b/ext/standard/tests/file/fwrite_basic-win32.phpt
@@ -44,7 +44,7 @@ foreach($file_content_types as $file_content_type) {
$data_to_be_written="";
fill_buffer($data_to_be_written, $file_content_type, 1024); //get the data of size 1024
- /* Write the data in to the file, verify the write by checking file pointer position,
+ /* Write the data in to the file, verify the write by checking file pointer position,
eof position, and data. */
// writing 100 bytes
var_dump( ftell($file_handle) ); // Expecting 0
@@ -66,7 +66,7 @@ foreach($file_content_types as $file_content_type) {
var_dump( fclose($file_handle) ); //expected : true
clearstatcache();//clears file status cache
var_dump( filesize($filename) ); // expected: 2148
- var_dump(md5(file_get_contents($filename))); // hash the output
+ var_dump(md5(file_get_contents($filename))); // hash the output
} // end of inner for loop