Kaydet (Commit) f6678c29 authored tarafından dennisroczek's avatar dennisroczek Kaydeden (comit) Noel Grandin

fix typo: alreay --> already

Change-Id: Iabb8588a2547c925c2c959f3b4831c89935a9529
Reviewed-on: https://gerrit.libreoffice.org/35133Reviewed-by: 's avatarNoel Grandin <noel.grandin@collabora.co.uk>
Tested-by: 's avatarNoel Grandin <noel.grandin@collabora.co.uk>
üst cf21b6b1
......@@ -78,7 +78,7 @@ void lru_map_test::testReplaceValue()
CPPUNIT_ASSERT_EQUAL(size_t(1), lru.size());
CPPUNIT_ASSERT_EQUAL(2, lru.find(1)->second);
// inserting new entry with key that alreay exists
// inserting new entry with key that already exists
lru.insert(std::make_pair<int, int>(1, 4));
CPPUNIT_ASSERT_EQUAL(size_t(1), lru.size());
CPPUNIT_ASSERT_EQUAL(4, lru.find(1)->second);
......@@ -91,7 +91,7 @@ void lru_map_test::testReplaceValue()
// check if insert with same key, moves the entry back of the lru queu
// inserting new entry with key that alreay exists
// inserting new entry with key that already exists
lru.insert(std::make_pair<int, int>(1, 6));
// inserting new entry, lru removed
lru.insert(std::make_pair<int, int>(3, 300));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment