test: rename test_aeap_transition_{0,1} to test_aeap_transition_{single,group}

This commit is contained in:
link2xt
2026-09-16 02:28:43 +00:00
committed by l
parent 5a71fe101e
commit 6b1d982cfc

View File

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