Skip to content

Commit e79b1b1

Browse files
authored
Merge pull request #1181 from input-output-hk/jpraynaud/fix-flaky-test-end-to-end
Fix flaky end to end test
2 parents 1eccf0a + b680baf commit e79b1b1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

mithril-test-lab/mithril-end-to-end/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mithril-end-to-end"
3-
version = "0.2.7"
3+
version = "0.2.8"
44
authors = { workspace = true }
55
edition = { workspace = true }
66
documentation = { workspace = true }

mithril-test-lab/mithril-end-to-end/src/utils/spec_utils.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ mod tests {
9797

9898
let elapsed = now.elapsed().as_millis();
9999
assert!(
100-
(10..=15).contains(&elapsed),
100+
(10..=30).contains(&elapsed),
101101
"Failure, after one loop the elapsed time was not ~10ms, elapsed: {elapsed}"
102102
);
103103
}

0 commit comments

Comments
 (0)