From: Nikita Popov Date: Mon, 15 Apr 2019 09:40:37 +0000 (+0200) Subject: Try to fix stat_variation3-win32.phpt X-Git-Tag: php-7.4.0alpha1~495 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=433d68fce1a3c7f4855a8fdcdb911a1e7b46ee27;p=php 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 ==. --- 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 ***";