Browse Source

Internal cleanup migrating StatusOr.

PiperOrigin-RevId: 329720018
main
leveldb Team 4 years ago
committed by Victor Costan
parent
commit
b7d3023269
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      util/testutil.h

+ 1
- 1
util/testutil.h View File

@ -18,7 +18,7 @@ namespace test {
MATCHER(IsOK, "") { return arg.ok(); } MATCHER(IsOK, "") { return arg.ok(); }
// Macros for testing the results of functions that return leveldb::Status or // Macros for testing the results of functions that return leveldb::Status or
// util::StatusOr<T> (for any type T).
// absl::StatusOr<T> (for any type T).
#define EXPECT_LEVELDB_OK(expression) \ #define EXPECT_LEVELDB_OK(expression) \
EXPECT_THAT(expression, leveldb::test::IsOK()) EXPECT_THAT(expression, leveldb::test::IsOK())
#define ASSERT_LEVELDB_OK(expression) \ #define ASSERT_LEVELDB_OK(expression) \

Loading…
Cancel
Save