Skip to content

Commit 1dcb1bd

Browse files
author
chuhao zeng
committed
make format
1 parent a294adf commit 1dcb1bd

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

tools/ldb_cmd_test.cc

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1213,7 +1213,8 @@ class MyComparator : public rocksdb::Comparator {
12131213
return a.compare(b);
12141214
}
12151215
void FindShortSuccessor(std::string* /*key*/) const override {}
1216-
void FindShortestSeparator(std::string* /*start*/, const Slice& /*limit*/) const override {}
1216+
void FindShortestSeparator(std::string* /*start*/,
1217+
const Slice& /*limit*/) const override {}
12171218
const char* Name() const override { return "my_comparator"; }
12181219
};
12191220

@@ -1245,8 +1246,8 @@ TEST_F(LdbCmdTest, CustomComparator) {
12451246
char arg4[] = "k1";
12461247
char* argv[] = {arg1, const_cast<char*>(arg2.c_str()), arg3, arg4};
12471248

1248-
ASSERT_EQ(0, LDBCommandRunner::RunCommand(4, argv, opts, LDBOptions(), nullptr));
1249-
}
1249+
ASSERT_EQ(0,
1250+
LDBCommandRunner::RunCommand(4, argv, opts, LDBOptions(), nullptr));}
12501251

12511252
} // namespace ROCKSDB_NAMESPACE
12521253

0 commit comments

Comments
 (0)