From 56e0719556792b5c313d25c0864897d40d2c0959 Mon Sep 17 00:00:00 2001 From: Jeff Baskin Date: Thu, 10 Apr 2025 13:50:57 -0400 Subject: [PATCH] Improved send time test. --- src/clock.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/clock.rs b/src/clock.rs index 6c689cc..0e622f3 100644 --- a/src/clock.rs +++ b/src/clock.rs @@ -78,7 +78,7 @@ mod clocks { ); assert!( msg2.get_data("time").unwrap().to_datetime().unwrap() - > msg1.get_data("time").unwrap().to_datetime().unwrap(), + >= msg1.get_data("time").unwrap().to_datetime().unwrap() + SLEEP_FOR, "shoould present the latest time" ); }