From 31f85ba11fce9ef5a5a3a290908fcbfd9b2029de Mon Sep 17 00:00:00 2001 From: Zain Budhwani Date: Thu, 6 Feb 2025 23:40:01 +0000 Subject: [PATCH] Fix dependency from PR:345 --- gnmi_server/server_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnmi_server/server_test.go b/gnmi_server/server_test.go index 96e1aabe..3c27258f 100644 --- a/gnmi_server/server_test.go +++ b/gnmi_server/server_test.go @@ -277,8 +277,8 @@ func TestPFCWDErrors(t *testing.T) { TLS: &tls.Config{InsecureSkipVerify: true}, }, wantNoti: []client.Notification{ - client.Update{Path: []string{"COUNTERS", "Ethernet*"}, TS: time.Unix(0, 200), Val: countersEthernetWildcardJson}, - client.Update{Path: []string{"COUNTERS", "Ethernet*"}, TS: time.Unix(0, 200), Val: countersEthernetWildcardJson}, + client.Update{Path: []string{"COUNTERS_DB", "COUNTERS", "Ethernet*"}, TS: time.Unix(0, 200), Val: countersEthernetWildcardJson}, + client.Update{Path: []string{"COUNTERS_DB", "COUNTERS", "Ethernet*"}, TS: time.Unix(0, 200), Val: countersEthernetWildcardJson}, }, }, }