Skip to content

Commit b72d6a8

Browse files
author
Bewaji Olumuyiwa
committed
Merged PR 9466110: Fixed issue with parameter naming in PTM CLI
## Pull Request Checklist ### General - [ ] Are all regression test passed? - [ ] Are there any test cases that will expose unfixed TDIs or Windows bugs? ### New Test Case - [ ] Have Design Spec and User Guide been updated? - [ ] Can all the test cases be loaded and executed by PTM & PTMCli? - [ ] Can the related changes support multiple platform(Windows, Linux, MacOS)? ### SDK Changes - [ ] Are all related test suites Regression passed? Fixed issue with paramater naming in PTM CLI
1 parent 7a95002 commit b72d6a8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ProtocolTestManager/PtmCli/Options.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class Options
3535

3636
[Option("cfilter",
3737
Required = false,
38-
HelpText = "Specifies the filter expression of test cases to run using the provided capabilities specification file.\nThis parameter is required if a capabilities specification file is provided using the cspecs parameter.")]
38+
HelpText = "Specifies the filter expression of test cases to run using the provided capabilities specification file.\nThis parameter is required if a capabilities specification file is provided using the cfile parameter.")]
3939
public string CapabilitiesFilterExpression { get; set; }
4040

4141
[Option("config",

ProtocolTestManager/PtmCli/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ static void CheckParameters(string[] args)
228228
}
229229
}
230230

231-
if (_param.ContainsKey("cspecs"))
231+
if (_param.ContainsKey("cfile"))
232232
{
233233
if(!_param.ContainsKey("cfilter"))
234234
{

0 commit comments

Comments
 (0)