From ee395c5841c08df3113d5cd35fda2815c6850293 Mon Sep 17 00:00:00 2001 From: Laura Henning Date: Tue, 20 Aug 2024 09:14:26 +0000 Subject: [PATCH] fix: set UPF association context correctly --- internal/context/user_plane_information_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/context/user_plane_information_test.go b/internal/context/user_plane_information_test.go index 5e8fe47b..88fe24da 100644 --- a/internal/context/user_plane_information_test.go +++ b/internal/context/user_plane_information_test.go @@ -504,6 +504,7 @@ func TestGetUEIPPool(t *testing.T) { userplaneInformation := smf_context.NewUserPlaneInformation(configForIPPoolAllocate) for _, upf := range userplaneInformation.UPFs { upf.UPFStatus = smf_context.AssociatedSetUpSuccess + upf.Association, upf.AssociationCancelFunc = context.WithCancel(context.Background()) } for ci, tc := range testCasesOfGetUEIPPool {