diff options
| author | Nikita Popov <nikita.ppv@gmail.com> | 2019-04-15 11:40:37 +0200 |
|---|---|---|
| committer | Nikita Popov <nikita.ppv@gmail.com> | 2019-04-15 11:40:37 +0200 |
| commit | 433d68fce1a3c7f4855a8fdcdb911a1e7b46ee27 (patch) | |
| tree | c045e0491e1b8ea3d13b7970616930f57b7a87f5 | |
| parent | 7f6c22cb3d207db0937a8f67e51bee031ba47314 (diff) | |
| download | php-git-433d68fce1a3c7f4855a8fdcdb911a1e7b46ee27.tar.gz | |
Try to fix stat_variation3-win32.phpt
After fixing comparison operator typos in
f73c104927b64d6137cbe42bf42260d9349cbd02 this test is failing. I
believe the comparison here should be using < rather than ==.
| -rw-r--r-- | ext/standard/tests/file/stat_variation3-win32.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/tests/file/stat_variation3-win32.phpt b/ext/standard/tests/file/stat_variation3-win32.phpt index 2633fd60b8..d08612fc7f 100644 --- a/ext/standard/tests/file/stat_variation3-win32.phpt +++ b/ext/standard/tests/file/stat_variation3-win32.phpt @@ -54,7 +54,7 @@ $new_stat1 = stat($dirname); // compare self stats var_dump( compare_self_stat($new_stat1) ); // compare the stats -var_dump(compare_stats($new_stat, $new_stat1, $all_stat_keys, "==")); +var_dump(compare_stats($new_stat, $new_stat1, $affected_members, "<")); clearstatcache(); echo "\n*** Done ***"; |
