fix: manual drop on tests

This commit is contained in:
JasterV 2025-10-29 10:23:08 +01:00
parent 9227f3e693
commit 4dfe4c8919

View file

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