From 8c0ddd42b556897c4ac189b2c1c70d351ccb586e Mon Sep 17 00:00:00 2001 From: Prashansa Kulshrestha Date: Tue, 10 Sep 2024 13:55:49 +0530 Subject: [PATCH] test --- tests/integration/sync_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/integration/sync_test.go b/tests/integration/sync_test.go index 88ca0810c..9607f7505 100644 --- a/tests/integration/sync_test.go +++ b/tests/integration/sync_test.go @@ -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 { // Ignore the "redis" key in all comparisons