]> git.ipfire.org Git - thirdparty/ccache.git/commitdiff
chore: Avoid false positive spelling warning with typos 1.37.0
authorJoel Rosdahl <joel@rosdahl.net>
Wed, 1 Oct 2025 16:28:38 +0000 (18:28 +0200)
committerJoel Rosdahl <joel@rosdahl.net>
Wed, 1 Oct 2025 16:28:38 +0000 (18:28 +0200)
unittest/test_util_string.cpp

index 9cfa95ccab60728272dd941768797659eb426535..8a6138bc3c9abc87058f12f2d2af01c92e2d11b3 100644 (file)
@@ -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
 }