Merge pull request #6001 from BenWiederhake/dev-dd-small-times

dd: fix flaky test_final_stats_unspec
This commit is contained in:
Sylvestre Ledru
2024-02-23 08:33:35 +01:00
committed by GitHub
+1 -1
View File
@@ -277,7 +277,7 @@ fn test_final_stats_unspec() {
new_ucmd!()
.run()
.stderr_contains("0+0 records in\n0+0 records out\n0 bytes copied, ")
.stderr_matches(&Regex::new(r"\d\.\d+(e-\d\d)? s, ").unwrap())
.stderr_matches(&Regex::new(r"\d(\.\d+)?(e-\d\d)? s, ").unwrap())
.stderr_contains("0.0 B/s")
.success();
}