From 3ad0e5fd9ed280a85afa1d23bda77a64aa6b57b2 Mon Sep 17 00:00:00 2001 From: "ev.lekht" Date: Wed, 2 Oct 2024 13:15:16 +0400 Subject: [PATCH] clean up --- internal/messaging/types/types_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/messaging/types/types_test.go b/internal/messaging/types/types_test.go index 16f47fc..a264917 100644 --- a/internal/messaging/types/types_test.go +++ b/internal/messaging/types/types_test.go @@ -9,7 +9,7 @@ import ( const ( TestServiceV1 = "TestServiceV1" TestServiceV1Request MessageType = TestServiceV1 + ".Request" - TestServiceV2Response MessageType = TestServiceV1 + ".Response" + TestServiceV1Response MessageType = TestServiceV1 + ".Response" ) func TestMessageTypeToServiceName(t *testing.T) { @@ -22,7 +22,7 @@ func TestMessageTypeToServiceName(t *testing.T) { expected: TestServiceV1, }, { - messageType: TestServiceV2Response, + messageType: TestServiceV1Response, expected: TestServiceV1, }, }