aboutsummaryrefslogtreecommitdiff
path: root/pw_hex_dump/hex_dump_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'pw_hex_dump/hex_dump_test.cc')
-rw-r--r--pw_hex_dump/hex_dump_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/pw_hex_dump/hex_dump_test.cc b/pw_hex_dump/hex_dump_test.cc
index 1b102515e..f37443142 100644
--- a/pw_hex_dump/hex_dump_test.cc
+++ b/pw_hex_dump/hex_dump_test.cc
@@ -100,7 +100,7 @@ class SmallBuffer : public ::testing::Test {
TEST_F(HexDump, DumpAddr_ZeroSizeT) {
constexpr const char* expected = EXPECTED_SIGNIFICANT_BYTES("00000000");
size_t zero = 0;
- EXPECT_EQ(DumpAddr(dest_, zero), Status::Ok());
+ EXPECT_EQ(DumpAddr(dest_, zero), OkStatus());
EXPECT_STREQ(expected, dest_.data());
}