From c91f91a52e2f7d99cf37926d16618486e752b615 Mon Sep 17 00:00:00 2001 From: ygorelik Date: Mon, 9 Aug 2021 15:03:50 -0700 Subject: [PATCH] Resolved GitHub issue #1053 --- CHANGES.md | 3 +++ sdk/go/CHANGES.md | 3 +++ sdk/go/gnmi/tests/gnmi_service_test.go | 3 +++ 3 files changed, 9 insertions(+) diff --git a/CHANGES.md b/CHANGES.md index aa4fef9a4..3ee4fcb43 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -3,6 +3,9 @@ #### New features and enhancements * Create go wrapper for NetconfSession and other path APIs ([#779](https://github.com/CiscoDevNet/ydk-gen/issues/779)) +#### Resolved GitHub issues + * Go function EntityEqual result depends on parameters order ([#1053](https://github.com/CiscoDevNet/ydk-gen/issues/1053)) + ### 2021-05-30 version 0.8.5.2 diff --git a/sdk/go/CHANGES.md b/sdk/go/CHANGES.md index fbd45192f..923224fd3 100644 --- a/sdk/go/CHANGES.md +++ b/sdk/go/CHANGES.md @@ -3,6 +3,9 @@ #### New features and enhancements * Create go wrapper for NetconfSession and other path APIs ([#779](https://github.com/CiscoDevNet/ydk-gen/issues/779)) +#### Resolved GitHub issues + * Go function EntityEqual result depends on parameters order ([#1053](https://github.com/CiscoDevNet/ydk-gen/issues/1053)) + ### 2021-04-30 version 0.8.5.2 diff --git a/sdk/go/gnmi/tests/gnmi_service_test.go b/sdk/go/gnmi/tests/gnmi_service_test.go index f28cfc2be..c4f024c20 100644 --- a/sdk/go/gnmi/tests/gnmi_service_test.go +++ b/sdk/go/gnmi/tests/gnmi_service_test.go @@ -290,6 +290,9 @@ func (suite *GnmiServiceTestSuite) TestCrudSingle() { // Read all ifcFilter := ysanity_int.Interfaces_Interface{} ifcFilter.Name = "Loopback10" + ifcs := ysanity_int.Interfaces{} + ifcs.Interface = append(ifcs.Interface, &ifcFilter) + types.SetAllParents(&ifcs) readIfc := crud.Read(&suite.Provider, &ifcFilter) suite.NotNil(readIfc)