mirror of
https://github.com/facebook/rocksdb.git
synced 2024-11-26 07:30:54 +00:00
Fix another sign and unsign comparison in test
This commit is contained in:
parent
cbe7ffef9a
commit
4815468be4
|
@ -614,7 +614,7 @@ TEST(BackupableDBTest, OnlineIntegrationTest) {
|
|||
|
||||
std::vector<BackupInfo> backup_info;
|
||||
restore_db_->GetBackupInfo(&backup_info);
|
||||
ASSERT_EQ(2, backup_info.size());
|
||||
ASSERT_EQ(2UL, backup_info.size());
|
||||
|
||||
// check backup 3
|
||||
AssertBackupConsistency(3, 0, 3 * keys_iteration, max_key);
|
||||
|
|
Loading…
Reference in a new issue