Skip to content

Commit

Permalink
fix: golangci-lint issues (#2641)
Browse files Browse the repository at this point in the history
  • Loading branch information
utsabc committed Nov 2, 2022
1 parent f6f91ea commit c9bd5d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions processor/processor_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2477,8 +2477,8 @@ var _ = Describe("TestConfigFilter", func() {
"configFilters": ["long_config1", "long_config2"]
}
}`
json.Unmarshal([]byte(intgConfigStr), &intgConfig)
json.Unmarshal([]byte(destDefStr), &destDef)
_ = json.Unmarshal([]byte(intgConfigStr), &intgConfig)
_ = json.Unmarshal([]byte(destDefStr), &destDef)
intgConfig.DestinationDefinition = destDef
expectedEvent := transformer.TransformerEventT{
Message: types.SingularEventT{
Expand Down

0 comments on commit c9bd5d4

Please sign in to comment.