Skip to content

Commit 433d68f

Browse files
committed
Try to fix stat_variation3-win32.phpt
After fixing comparison operator typos in f73c104 this test is failing. I believe the comparison here should be using < rather than ==.
1 parent 7f6c22c commit 433d68f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/standard/tests/file/stat_variation3-win32.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ $new_stat1 = stat($dirname);
5454
// compare self stats
5555
var_dump( compare_self_stat($new_stat1) );
5656
// compare the stats
57-
var_dump(compare_stats($new_stat, $new_stat1, $all_stat_keys, "=="));
57+
var_dump(compare_stats($new_stat, $new_stat1, $affected_members, "<"));
5858
clearstatcache();
5959

6060
echo "\n*** Done ***";

0 commit comments

Comments
 (0)