Skip to content

Commit

Permalink
Fix another sign and unsign comparison in test
Browse files Browse the repository at this point in the history
  • Loading branch information
siying committed Dec 10, 2013
1 parent cbe7ffe commit 4815468
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utilities/backupable/backupable_db_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 4815468

Please sign in to comment.