Skip to content

Commit be7e273

Browse files
committed
fix u/s comparison XRPLF#83
1 parent 46812f6 commit be7e273

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

db/db_test.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -842,7 +842,7 @@ void VerifyTableProperties(DB* db, uint64_t expected_entries_size) {
842842
ASSERT_OK(db->GetPropertiesOfAllTables(&props));
843843

844844
assert(props.size() == 4);
845-
ASSERT_EQ(4, props.size());
845+
ASSERT_EQ(4U, props.size());
846846
std::unordered_set<uint64_t> unique_entries;
847847

848848
// Indirect test

0 commit comments

Comments
 (0)