Skip to content

Commit

Permalink
fix clang-tidy tests
Browse files Browse the repository at this point in the history
  • Loading branch information
phlptp committed Oct 14, 2024
1 parent 0fbb7d4 commit 1092b48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/FuzzFailTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ TEST_CASE("fuzz_config_test1") {

std::string config_string = "<option>--new_option</option><flag>--new_flag</flag><vector>--new_vector</vector>";
auto loc = fuzzdata.add_custom_options(app.get(), config_string);
config_string = config_string.substr(loc, std::string::npos);
config_string = config_string.substr(loc);
CHECK(config_string.empty());
CHECK(app->get_option_no_throw("--new_option") != nullptr);
CHECK(app->get_option_no_throw("--new_flag") != nullptr);
Expand Down

0 comments on commit 1092b48

Please sign in to comment.