From 91159acdfca5363132e6b78fb97610a558fe3c03 Mon Sep 17 00:00:00 2001 From: Zerthox Date: Sun, 29 Dec 2024 20:11:05 +0100 Subject: [PATCH] Fix tests --- reffect/src/fmt.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reffect/src/fmt.rs b/reffect/src/fmt.rs index d861054..fea032d 100644 --- a/reffect/src/fmt.rs +++ b/reffect/src/fmt.rs @@ -135,7 +135,7 @@ mod tests { fn time() { assert_eq!(Time::new(0, 0, 00).to_string(), "0.0"); assert_eq!(Time::new(0, 0, 1234).to_string(), "1.2"); - assert_eq!(Time::new(3, 4, 567).to_string(), "3:04.6"); + assert_eq!(Time::new(3, 4, 567).to_string(), "3:05"); } #[test]