diff options
author | Dominick Allen <djallen@librehumanitas.org> | 2024-10-28 23:49:50 -0500 |
---|---|---|
committer | Dominick Allen <djallen@librehumanitas.org> | 2024-10-28 23:49:50 -0500 |
commit | afc11065bb151349090d8ae89cb61d1c35bdddae (patch) | |
tree | 41a7133a6e143d6333594d899556831b5a914fc1 /test/test_string.cpp | |
parent | c3cf6df863828798ed8230b0f0966bcf3b2d08dd (diff) |
Prepare for new SSO.
Diffstat (limited to 'test/test_string.cpp')
-rw-r--r-- | test/test_string.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_string.cpp b/test/test_string.cpp index 61052ef..54e3802 100644 --- a/test/test_string.cpp +++ b/test/test_string.cpp @@ -72,9 +72,9 @@ TEST(FudString, HeapAlloc) TEST(FudString, Reserve) { String testString{}; - ASSERT_TRUE(testString.valid()); + ASSERT_TRUE(testString.utf8Valid()); ASSERT_EQ(testString.reserve(256), FudStatus::Success); - ASSERT_TRUE(testString.valid()); + ASSERT_TRUE(testString.utf8Valid()); } #if 0 |