Skip to content

Commit 78efd06

Browse files
authored
Updated error message (#1407) (#2349)
* Updated error message
1 parent 4852965 commit 78efd06

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tools/projmgr/src/ProjMgr.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -524,7 +524,7 @@ bool ProjMgr::PopulateContexts(void) {
524524
}
525525
}
526526
} else {
527-
ProjMgrLogger::Get().Error("input yml files were not specified");
527+
ProjMgrLogger::Get().Error("csolution file not specified");
528528
return false;
529529
}
530530

tools/projmgr/test/src/ProjMgrUnitTests.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4873,7 +4873,7 @@ TEST_F(ProjMgrUnitTests, RunProjMgr_ListConfigsWithoutInput) {
48734873
argv[2] = (char*)"configs";
48744874
EXPECT_EQ(1, RunProjMgr(3, argv, m_envp));
48754875
auto errStr = streamRedirect.GetErrorString();
4876-
EXPECT_NE(string::npos, errStr.find("input yml files were not specified"));
4876+
EXPECT_NE(string::npos, errStr.find("csolution file not specified"));
48774877
}
48784878

48794879
TEST_F(ProjMgrUnitTests, RunProjMgr_No_target_Types) {

0 commit comments

Comments
 (0)