Skip to content

Commit

Permalink
Fix unit test failure
Browse files Browse the repository at this point in the history
Creates parity with changes from #410
  • Loading branch information
matthewkotila authored Oct 9, 2023
1 parent 9748ba1 commit dfc6850
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/c++/perf_analyzer/test_command_line_parser.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1224,7 +1224,6 @@ TEST_CASE("Testing Command Line Parser")
exp->async = true;
exp->streaming = true;
exp->url = "localhost:8001"; // gRPC url
exp->max_threads = 4; // not targeting concurrency

SUBCASE("start provided")
{
Expand All @@ -1246,6 +1245,8 @@ TEST_CASE("Testing Command Line Parser")
check_params = false;
}

exp->max_threads = 400;

CheckValidRange(
args, option_name, parser, act, exp->is_using_periodic_concurrency_mode,
exp->periodic_concurrency_range);
Expand Down

0 comments on commit dfc6850

Please sign in to comment.