From: Joel Rosdahl Date: Wed, 1 Oct 2025 16:28:38 +0000 (+0200) Subject: chore: Avoid false positive spelling warning with typos 1.37.0 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=de3f9480c6be33c52df83a2253d60de508316665;p=thirdparty%2Fccache.git chore: Avoid false positive spelling warning with typos 1.37.0 --- diff --git a/unittest/test_util_string.cpp b/unittest/test_util_string.cpp index 9cfa95cc..8a6138bc 100644 --- a/unittest/test_util_string.cpp +++ b/unittest/test_util_string.cpp @@ -584,7 +584,7 @@ TEST_CASE("util::split_option_with_concat_path") CHECK(split("-I/C:/foo") == Result("-I", "/C:/foo")); CHECK(split("-IC:/foo") == Result("-I", "C:/foo")); CHECK(split("-W,path/c:/foo") == Result("-W,path", "/c:/foo")); - CHECK(split("-W,pathc:/foo") == Result("-W,path", "c:/foo")); + CHECK(split("-W,pathC:/foo") == Result("-W,path", "C:/foo")); CHECK(split("-opt:value") == Result("-opt:value", nullopt)); #endif }