From e4dbb8bb85d1c0633dc0fdabd3b31ec84892a1b1 Mon Sep 17 00:00:00 2001 From: andrussal Date: Sat, 11 Apr 2026 10:39:45 +0200 Subject: [PATCH] fix(core): clean up runtime extensions before deployer teardown --- testing-framework/core/src/scenario/runtime/context.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing-framework/core/src/scenario/runtime/context.rs b/testing-framework/core/src/scenario/runtime/context.rs index 592387c..f7c967d 100644 --- a/testing-framework/core/src/scenario/runtime/context.rs +++ b/testing-framework/core/src/scenario/runtime/context.rs @@ -226,7 +226,7 @@ impl RuntimeAssembly { mut self, cleanup_guard: Option>, ) -> super::Runner { - let cleanup_guard = chain_cleanup_guards(self.cleanup_guard.take(), cleanup_guard); + let cleanup_guard = chain_cleanup_guards(cleanup_guard, self.cleanup_guard.take()); super::Runner::new(self.build_context(), cleanup_guard) } }