From 433d68fce1a3c7f4855a8fdcdb911a1e7b46ee27 Mon Sep 17 00:00:00 2001 From: Nikita Popov Date: Mon, 15 Apr 2019 11:40:37 +0200 Subject: [PATCH] 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 ==. --- ext/standard/tests/file/stat_variation3-win32.phpt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ***"; -- 2.40.0