summaryrefslogtreecommitdiffstats
path: root/o3tl
diff options
context:
space:
mode:
Diffstat (limited to 'o3tl')
-rw-r--r--o3tl/qa/test-lru_map.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/o3tl/qa/test-lru_map.cxx b/o3tl/qa/test-lru_map.cxx
index abd9cb237bb9..b985966f43d2 100644
--- a/o3tl/qa/test-lru_map.cxx
+++ b/o3tl/qa/test-lru_map.cxx
@@ -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));