Fix MRU test compilation

Originally committed to SVN as r5901.
This commit is contained in:
Thomas Goyne 2011-11-20 17:35:07 +00:00
parent 893ec95841
commit 3c9864e888
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ TEST_F(lagi_mru, MRUAddSeveral) {
EXPECT_STREQ("/file/3", (*entry++).c_str());
EXPECT_STREQ("/file/1", (*entry++).c_str());
EXPECT_STREQ("/file/2", (*entry++).c_str());
EXPECT_EQ(mru.Get("Valid")->end(), entry);
EXPECT_TRUE(mru.Get("Valid")->end() == entry);
}