From ffbe1e59f75abdb94d64ce5131f4559c8edbcd23 Mon Sep 17 00:00:00 2001 From: Nedyalko Dyakov <1547186+ndyakov@users.noreply.github.com> Date: Sat, 25 Oct 2025 21:44:27 +0300 Subject: [PATCH] Update internal/pool/conn_state_test.go Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- internal/pool/conn_state_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/pool/conn_state_test.go b/internal/pool/conn_state_test.go index 13690254..54d94af7 100644 --- a/internal/pool/conn_state_test.go +++ b/internal/pool/conn_state_test.go @@ -384,9 +384,9 @@ func TestConnStateMachine_AwaitAndTransitionWaitsForInitialization(t *testing.T) t.Errorf("expected %d completions, got %d", numGoroutines, completedCount.Load()) } - // Final state should be READY + // Final state should be IDLE if sm.GetState() != StateIdle { - t.Errorf("expected final state READY, got %s", sm.GetState()) + t.Errorf("expected final state IDLE, got %s", sm.GetState()) } t.Logf("Execution order: %v", executionOrder)