[FIX-CONFLICT-WITH-RSTEST-V2]: remove unnecessary comments

This commit is contained in:
Vyacheslav Volkov 2025-10-28 17:25:23 +03:00
parent 57bb18bad2
commit 036564096b

View file

@ -164,12 +164,10 @@ impl AsyncTestContext for TeardownPanicContext {
}
}
// NOTE: redo next with transfer argument by mutable reference only, not by ownership like it was before !!!
#[test_context(TeardownPanicContext, skip_teardown)]
#[tokio::test]
async fn test_async_skip_teardown(_ctx: &mut TeardownPanicContext) {}
// NOTE: redo next with transfer argument by mutable reference only, not by ownership like it was before !!!
#[test_context(TeardownPanicContext, skip_teardown)]
#[test]
fn test_sync_skip_teardown(_ctx: &mut TeardownPanicContext) {}