@@ -440,7 +440,7 @@ mod tests {
440440 let base_timestamp = 1640995200 ;
441441 let test_base_time = UNIX_EPOCH + Duration :: from_secs ( base_timestamp) ;
442442 let old_time = test_base_time - Duration :: from_hours ( 1 ) ; // 1 hour before base
443- let new_time = test_base_time + Duration :: from_secs ( 7200 ) ; // 2 hours after base (beyond slop)
443+ let new_time = test_base_time + Duration :: from_hours ( 2 ) ; // 2 hours after base (beyond slop)
444444
445445 // Files older than base should be considered equal
446446 assert_eq ! ( comparator( & old_time, & old_time) , std:: cmp:: Ordering :: Equal ) ;
@@ -739,7 +739,7 @@ mod tests {
739739 let base_timestamp = base_time. duration_since ( UNIX_EPOCH ) ?. as_secs ( ) ;
740740 let update_window_time = UNIX_EPOCH + Duration :: from_secs ( base_timestamp + 3630 ) ; // In the middle of update window
741741 let old_time = base_time - Duration :: from_hours ( 1 ) ;
742- let new_time = base_time + Duration :: from_secs ( 7200 ) ;
742+ let new_time = base_time + Duration :: from_hours ( 2 ) ;
743743
744744 // When update_window_time is the first arg (env1 context with update window),
745745 // it should be treated as equal to old files
@@ -815,7 +815,7 @@ mod tests {
815815 let comparator = CondaFingerprint :: mtime_comparator ( & fingerprint1, & fingerprint2) ?;
816816
817817 let old_time = base_time - Duration :: from_hours ( 1 ) ;
818- let new_time = base_time + Duration :: from_secs ( 7200 ) ;
818+ let new_time = base_time + Duration :: from_hours ( 2 ) ;
819819
820820 // Basic mtime comparison should still work
821821 assert_eq ! ( comparator( & old_time, & old_time) , std:: cmp:: Ordering :: Equal ) ;
@@ -929,7 +929,7 @@ mod tests {
929929 let comparator = CondaFingerprint :: mtime_comparator ( & fingerprint1, & fingerprint2) ?;
930930
931931 let old_time = base_time - Duration :: from_hours ( 1 ) ;
932- let new_time = base_time + Duration :: from_secs ( 7200 ) ;
932+ let new_time = base_time + Duration :: from_hours ( 2 ) ;
933933
934934 assert_eq ! ( comparator( & old_time, & old_time) , std:: cmp:: Ordering :: Equal ) ;
935935 assert_eq ! (
0 commit comments