From ad86c7ac4fb00cb3cd98ba50f71f9211e4a6e231 Mon Sep 17 00:00:00 2001 From: Winni Neessen Date: Mon, 11 Nov 2024 20:06:07 +0100 Subject: [PATCH] Correct typo in test name The test name had a typo in the word "recipient." This commit corrects "recepient" to "recipient" to improve code readability and maintain consistency in naming conventions. This change does not modify any functional behavior of the tests. --- client_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client_test.go b/client_test.go index 96ebf1f..39bd7e0 100644 --- a/client_test.go +++ b/client_test.go @@ -2803,7 +2803,7 @@ func TestClient_sendSingleMsg(t *testing.T) { t.Errorf("expected ErrGetSender, got %s", sendErr.Reason) } }) - t.Run("fail with no recepient addresses", func(t *testing.T) { + t.Run("fail with no recipient addresses", func(t *testing.T) { ctx, cancel := context.WithCancel(context.Background()) defer cancel() PortAdder.Add(1)