diff --git a/testing-framework/core/src/scenario/runtime/context.rs b/testing-framework/core/src/scenario/runtime/context.rs index cce8c05..6f6faf6 100644 --- a/testing-framework/core/src/scenario/runtime/context.rs +++ b/testing-framework/core/src/scenario/runtime/context.rs @@ -97,22 +97,17 @@ impl RunContext { } #[must_use] - pub const fn expectation_cooldown(&self) -> Duration { + pub(crate) const fn expectation_cooldown(&self) -> Duration { self.expectation_cooldown } - #[must_use] - pub const fn run_metrics(&self) -> RunMetrics { - self.metrics - } - #[must_use] pub fn node_control(&self) -> Option>> { self.node_control.clone() } #[must_use] - pub const fn controls_nodes(&self) -> bool { + pub(crate) const fn controls_nodes(&self) -> bool { self.node_control.is_some() }