From 9a2286a40497ac738d0d50e2ee285a913010c3c2 Mon Sep 17 00:00:00 2001 From: Sourabh Mehta <73165318+soumeh01@users.noreply.github.com> Date: Tue, 3 Feb 2026 07:39:40 +0100 Subject: [PATCH] Updated error message (#1407) * Updated error message * Addressing review comments --- tools/projmgr/src/ProjMgr.cpp | 2 +- tools/projmgr/test/src/ProjMgrUnitTests.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/projmgr/src/ProjMgr.cpp b/tools/projmgr/src/ProjMgr.cpp index 48ff43266..af0b6a532 100644 --- a/tools/projmgr/src/ProjMgr.cpp +++ b/tools/projmgr/src/ProjMgr.cpp @@ -524,7 +524,7 @@ bool ProjMgr::PopulateContexts(void) { } } } else { - ProjMgrLogger::Get().Error("input yml files were not specified"); + ProjMgrLogger::Get().Error("csolution file not specified"); return false; } diff --git a/tools/projmgr/test/src/ProjMgrUnitTests.cpp b/tools/projmgr/test/src/ProjMgrUnitTests.cpp index 9403070b6..5b3774636 100644 --- a/tools/projmgr/test/src/ProjMgrUnitTests.cpp +++ b/tools/projmgr/test/src/ProjMgrUnitTests.cpp @@ -4873,7 +4873,7 @@ TEST_F(ProjMgrUnitTests, RunProjMgr_ListConfigsWithoutInput) { argv[2] = (char*)"configs"; EXPECT_EQ(1, RunProjMgr(3, argv, m_envp)); auto errStr = streamRedirect.GetErrorString(); - EXPECT_NE(string::npos, errStr.find("input yml files were not specified")); + EXPECT_NE(string::npos, errStr.find("csolution file not specified")); } TEST_F(ProjMgrUnitTests, RunProjMgr_No_target_Types) {