From e2609bfb5dafa86806e6039d70b123b229b83d30 Mon Sep 17 00:00:00 2001 From: Rima Shah Date: Thu, 18 Jan 2024 12:32:43 -0700 Subject: [PATCH] Fixed tests --- CHANGELOG.md | 2 +- traffic_ops/testing/api/v3/profiles_export_test.go | 2 +- traffic_ops/testing/api/v4/profiles_export_test.go | 2 +- traffic_ops/testing/api/v5/profiles_export_test.go | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 03a74d7c5b..62895a318a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,7 +15,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - Updated the CacheGroups Traffic Portal page to use a more performant AG-Grid-based table. ### Fixed -- [#7917](https://github.com/apache/trafficcontrol/issues/7917) *Traffic Ops* Removed `Alerts` field from struct `ProfileExportResponse`. +- [#7917](https://github.com/apache/trafficcontrol/pull/7917) *Traffic Ops* Removed `Alerts` field from struct `ProfileExportResponse`. - [#7918](https://github.com/apache/trafficcontrol/pull/7918) *Traffic Portal* Fixed topology link under DS-Servers tables page - [#7846](https://github.com/apache/trafficcontrol/pull/7846) *Traffic Portal* Increase State character limit diff --git a/traffic_ops/testing/api/v3/profiles_export_test.go b/traffic_ops/testing/api/v3/profiles_export_test.go index faeaa260f4..e5a70e2cb2 100644 --- a/traffic_ops/testing/api/v3/profiles_export_test.go +++ b/traffic_ops/testing/api/v3/profiles_export_test.go @@ -54,7 +54,7 @@ func TestProfilesExport(t *testing.T) { t.Run(name, func(t *testing.T) { resp, reqInf, err := testCase.ClientSession.ExportProfile(testCase.EndpointID()) for _, check := range testCase.Expectations { - check(t, reqInf, resp, resp.Alerts, err) + check(t, reqInf, resp, tc.Alerts{}, err) } }) } diff --git a/traffic_ops/testing/api/v4/profiles_export_test.go b/traffic_ops/testing/api/v4/profiles_export_test.go index 13451189ef..8fb6925d31 100644 --- a/traffic_ops/testing/api/v4/profiles_export_test.go +++ b/traffic_ops/testing/api/v4/profiles_export_test.go @@ -56,7 +56,7 @@ func TestProfilesExport(t *testing.T) { t.Run(name, func(t *testing.T) { resp, reqInf, err := testCase.ClientSession.ExportProfile(testCase.EndpointID(), testCase.RequestOpts) for _, check := range testCase.Expectations { - check(t, reqInf, resp, resp.Alerts, err) + check(t, reqInf, resp, tc.Alerts{}, err) } }) } diff --git a/traffic_ops/testing/api/v5/profiles_export_test.go b/traffic_ops/testing/api/v5/profiles_export_test.go index ab12b47046..73b24fbc3a 100644 --- a/traffic_ops/testing/api/v5/profiles_export_test.go +++ b/traffic_ops/testing/api/v5/profiles_export_test.go @@ -55,7 +55,7 @@ func TestProfilesExport(t *testing.T) { t.Run(name, func(t *testing.T) { resp, reqInf, err := testCase.ClientSession.ExportProfile(testCase.EndpointID(), testCase.RequestOpts) for _, check := range testCase.Expectations { - check(t, reqInf, resp, resp.Alerts, err) + check(t, reqInf, resp, tc.Alerts{}, err) } }) }