From bee6d9443c9927fd9f9b1e89c6054e7284d813dc Mon Sep 17 00:00:00 2001 From: MarkLee131 Date: Tue, 28 Apr 2026 22:11:02 +0800 Subject: [PATCH] Update test/StringTest.cpp Co-authored-by: Alexey Sokolov --- test/StringTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/StringTest.cpp b/test/StringTest.cpp index 216f3862..cda87521 100644 --- a/test/StringTest.cpp +++ b/test/StringTest.cpp @@ -194,7 +194,7 @@ TEST(StringTest, Split) { EXPECT_EQ(CS("abc").Split("", vempty, true), 1u); EXPECT_EQ(vempty, VCString({"abc"})); EXPECT_EQ(CS("").Split("", vempty, false), 0u); - EXPECT_TRUE(vempty.empty()); + EXPECT_THAT(vempty, IsEmpty()); } TEST(StringTest, NamedFormat) {