Fire fake timers waking up at the same time as the current clock

Antonio Scandurra created

Change summary

crates/gpui/src/executor.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

crates/gpui/src/executor.rs 🔗

@@ -337,7 +337,7 @@ impl Deterministic {
 
             if let Some((_, wakeup_time, _)) = state.pending_timers.first() {
                 let wakeup_time = *wakeup_time;
-                if wakeup_time < new_now {
+                if wakeup_time <= new_now {
                     let timer_count = state
                         .pending_timers
                         .iter()