From f49b71c444d6874aadbd0f00005ebba4ecd3fd1a Mon Sep 17 00:00:00 2001 From: yanghao Date: Thu, 15 Aug 2024 16:33:00 +0800 Subject: [PATCH] fix linter error --- acceptor_session_provider_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/acceptor_session_provider_test.go b/acceptor_session_provider_test.go index 6f763f9b9..8a84e70ff 100644 --- a/acceptor_session_provider_test.go +++ b/acceptor_session_provider_test.go @@ -123,14 +123,14 @@ func (suite *DynamicAcceptorSessionProviderTestSuite) SetupTest() { ) suite.setUpSettings(templateID2, "RefreshOnLogon", "Y") - templateId3 := SessionID{BeginString: "FIX.4.4", SenderCompID: "ANY", TargetCompID: "ANY"} + templateID3 := SessionID{BeginString: "FIX.4.4", SenderCompID: "ANY", TargetCompID: "ANY"} templateMappings = append( templateMappings, &TemplateMapping{Pattern: SessionID{BeginString: "FIX.4.2", SenderCompID: WildcardPattern, SenderSubID: WildcardPattern, SenderLocationID: WildcardPattern, TargetCompID: WildcardPattern, TargetSubID: WildcardPattern, TargetLocationID: WildcardPattern, Qualifier: WildcardPattern, - }, TemplateID: templateId3}, + }, TemplateID: templateID3}, ) - suite.setUpSettings(templateId3, "ResetOnDisconnect", "Y") + suite.setUpSettings(templateID3, "ResetOnDisconnect", "Y") templateIDProvider := &DefaultTemplateIDProvider{ templateMappings: templateMappings,