summaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorleveldb Team <no-reply@google.com>2020-09-02 15:45:40 +0000
committerVictor Costan <costan@google.com>2020-10-07 21:15:26 +0000
commitb7d302326961fb809d92a95ce813e2d26fe2e16e (patch)
tree16de135700110ed081fa50b4b41636cd6e4a1b81 /util
parent1454924aacba2ea3cdf183bbed512566a600b05a (diff)
downloadleveldb-b7d302326961fb809d92a95ce813e2d26fe2e16e.tar.gz
Internal cleanup migrating StatusOr.
PiperOrigin-RevId: 329720018
Diffstat (limited to 'util')
-rw-r--r--util/testutil.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/testutil.h b/util/testutil.h
index cc67d96..e0e2d64 100644
--- a/util/testutil.h
+++ b/util/testutil.h
@@ -18,7 +18,7 @@ namespace test {
MATCHER(IsOK, "") { return arg.ok(); }
// 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) \
EXPECT_THAT(expression, leveldb::test::IsOK())
#define ASSERT_LEVELDB_OK(expression) \