From 6b1d982cfcdb8c9c51d0731a67d8e019cb177fc2 Mon Sep 17 00:00:00 2001 From: link2xt Date: Wed, 16 Sep 2026 02:28:43 +0000 Subject: [PATCH] test: rename test_aeap_transition_{0,1} to test_aeap_transition_{single,group} --- src/tests/aeap.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tests/aeap.rs b/src/tests/aeap.rs index d24ec1dce..6e23b28ce 100644 --- a/src/tests/aeap.rs +++ b/src/tests/aeap.rs @@ -49,11 +49,11 @@ enum ChatForTransition { use ChatForTransition::*; #[tokio::test(flavor = "multi_thread", worker_threads = 2)] -async fn test_aeap_transition_0() { +async fn test_aeap_transition_single() { check_aeap_transition(Single).await; } #[tokio::test(flavor = "multi_thread", worker_threads = 2)] -async fn test_aeap_transition_1() { +async fn test_aeap_transition_group() { check_aeap_transition(GroupChat).await; }