From 14ffac33b6520bf9e9c59ddf952caee7c4f188d1 Mon Sep 17 00:00:00 2001 From: Aaron Pop Date: Fri, 12 Jul 2024 16:02:43 -0700 Subject: [PATCH] Corrected test suite for ReportRouterExtraDataSuite, which was registering test to ReportRouterDataSuite by accident --- MsWheaPkg/MsWheaReport/Test/MsWheaReportCommonHostTest.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MsWheaPkg/MsWheaReport/Test/MsWheaReportCommonHostTest.c b/MsWheaPkg/MsWheaReport/Test/MsWheaReportCommonHostTest.c index 1e16a6fe7e..ebbab23044 100644 --- a/MsWheaPkg/MsWheaReport/Test/MsWheaReportCommonHostTest.c +++ b/MsWheaPkg/MsWheaReport/Test/MsWheaReportCommonHostTest.c @@ -757,8 +757,8 @@ UefiTestMain ( goto EXIT; } - AddTestCase (ReportRouterDataSuite, "ReportHwErrRecRouter should populate the extra WHEA data", "PopulateExtraData", ReportRouterPopulateWheaExtraData, NULL, NULL, NULL); - AddTestCase (ReportRouterDataSuite, "ReportHwErrRecRouter should not populate the extra WHEA data in invalid phases", "SkipEsPhases", ReportRouterSkipExtraDataInInvalidPhases, NULL, NULL, NULL); + AddTestCase (ReportRouterExtraDataSuite, "ReportHwErrRecRouter should populate the extra WHEA data", "PopulateExtraData", ReportRouterPopulateWheaExtraData, NULL, NULL, NULL); + AddTestCase (ReportRouterExtraDataSuite, "ReportHwErrRecRouter should not populate the extra WHEA data in invalid phases", "SkipEsPhases", ReportRouterSkipExtraDataInInvalidPhases, NULL, NULL, NULL); // // Execute the tests.