Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
Prashansa-K committed Sep 10, 2024
1 parent cf877d9 commit 8c0ddd4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration/sync_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4587,8 +4587,8 @@ func Test_Sync_ConsumerGroupsScopedPluginsKonnect(t *testing.T) {
ignoreFields := []cmp.Option{
cmp.FilterValues(func(x, y interface{}) bool {
// Apply this filtering when comparing maps
mapX, okX := x.(map[string]interface{})
mapY, okY := y.(map[string]interface{})
_, okX := x.(map[string]interface{})
_, okY := y.(map[string]interface{})
return okX && okY
}, cmpopts.IgnoreMapEntries(func(key string, value interface{}) bool {

Check failure on line 4593 in tests/integration/sync_test.go

View workflow job for this annotation

GitHub Actions / lint

unused-parameter: parameter 'value' seems to be unused, consider removing or renaming it as _ (revive)
// Ignore the "redis" key in all comparisons
Expand Down

0 comments on commit 8c0ddd4

Please sign in to comment.