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); } }