fix status ToString
All checks were successful
linux-x64-gcc / linux-gcc (Release) (push) Successful in 1m28s
linux-x64-gcc / linux-gcc (Debug) (push) Successful in 59s

This commit is contained in:
tqcq 2024-03-23 15:57:15 +08:00
parent 5f74d92221
commit 95845b14dc

View File

@ -5,5 +5,5 @@
TEST(Status, format) TEST(Status, format)
{ {
auto status = sled::Status(sled::StatusCode::kOk, ""); auto status = sled::Status(sled::StatusCode::kOk, "");
EXPECT_EQ(fmt::format("{}", status), ""); EXPECT_EQ(fmt::format("{}", status), "OK");
} }