We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c1ef39 commit 911a7f8Copy full SHA for 911a7f8
src/chat/chat_tests.rs
@@ -2039,8 +2039,9 @@ async fn test_forward_quote() -> Result<()> {
2039
2040
#[tokio::test(flavor = "multi_thread", worker_threads = 2)]
2041
async fn test_forward_group() -> Result<()> {
2042
- let alice = TestContext::new_alice().await;
2043
- let bob = TestContext::new_bob().await;
+ let mut tcm = TestContextManager::new();
+ let alice = tcm.alice().await;
2044
+ let bob = tcm.bob().await;
2045
2046
let alice_chat = alice.create_chat(&bob).await;
2047
let bob_chat = bob.create_chat(&alice).await;
0 commit comments