From 4dfe4c89198382677317373055ba73c0db7737b9 Mon Sep 17 00:00:00 2001 From: JasterV <49537445+JasterV@users.noreply.github.com> Date: Wed, 29 Oct 2025 10:23:08 +0100 Subject: [PATCH] fix: manual drop on tests --- test-context/tests/test.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/test-context/tests/test.rs b/test-context/tests/test.rs index 1b3e60f..b894025 100644 --- a/test-context/tests/test.rs +++ b/test-context/tests/test.rs @@ -228,7 +228,6 @@ impl AsyncTestContext for MyAsyncContext { async fn teardown(self) { println!("Answer is {}", self.what_the_of_life); - drop(self); } } @@ -255,7 +254,6 @@ impl TestContext for MyContext { fn teardown(self) { println!("Answer is {}", self.what_the_of_life); - drop(self); } }