Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
evlekht committed Oct 2, 2024
1 parent 420c53c commit 3ad0e5f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/messaging/types/types_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand All @@ -22,7 +22,7 @@ func TestMessageTypeToServiceName(t *testing.T) {
expected: TestServiceV1,
},
{
messageType: TestServiceV2Response,
messageType: TestServiceV1Response,
expected: TestServiceV1,
},
}
Expand Down

0 comments on commit 3ad0e5f

Please sign in to comment.