Selaa lähdekoodia

Merge #701

701: Fix how `Instant` is displayed r=thvdveld a=thvdveld

Instant was displayed incorrectly. For example,
`Instant::from_millis(74)` would have been displayed as "0.74s" instead of the correct "0.074s".

bors r+

Co-authored-by: Thibaut Vandervelden <thvdveld@vub.be>
bors[bot] 2 vuotta sitten
vanhempi
commit
202e9b4824
1 muutettua tiedostoa jossa 3 lisäystä ja 2 poistoa
  1. 3 2
      src/time.rs

+ 3 - 2
src/time.rs

@@ -130,7 +130,7 @@ impl From<Instant> for ::std::time::SystemTime {
 
 impl fmt::Display for Instant {
     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
-        write!(f, "{}.{}s", self.secs(), self.millis())
+        write!(f, "{}.{:0>3}s", self.secs(), self.millis())
     }
 }
 
@@ -361,8 +361,9 @@ mod test {
 
     #[test]
     fn test_instant_display() {
+        assert_eq!(format!("{}", Instant::from_millis(74)), "0.074s");
         assert_eq!(format!("{}", Instant::from_millis(5674)), "5.674s");
-        assert_eq!(format!("{}", Instant::from_millis(5000)), "5.0s");
+        assert_eq!(format!("{}", Instant::from_millis(5000)), "5.000s");
     }
 
     #[test]