summaryrefslogtreecommitdiffstats
path: root/libutils/tests
diff options
context:
space:
mode:
authorSergio Giro <sgiro@google.com>2015-09-30 13:31:45 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2015-09-30 13:31:45 +0000
commit94289783188545caede635faf46842972d635568 (patch)
treebdcf4344e8785935ba12fdaeb779932e220f849a /libutils/tests
parent57d81f60c6cf4d479329e8326ef97ffcf8da67a4 (diff)
parentfbb259e83633c35c5e6ede1d5f55f5672ab433d0 (diff)
downloadsystem_core-94289783188545caede635faf46842972d635568.tar.gz
system_core-94289783188545caede635faf46842972d635568.tar.bz2
system_core-94289783188545caede635faf46842972d635568.zip
am fbb259e8: am 8e2c8208: am 730fdbb1: Merge "system/core: change LruCache to use unordered_set instead of BasicHashTable"
* commit 'fbb259e83633c35c5e6ede1d5f55f5672ab433d0': system/core: change LruCache to use unordered_set instead of BasicHashTable
Diffstat (limited to 'libutils/tests')
-rw-r--r--libutils/tests/LruCache_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libutils/tests/LruCache_test.cpp b/libutils/tests/LruCache_test.cpp
index 6155defd4..2ed84d700 100644
--- a/libutils/tests/LruCache_test.cpp
+++ b/libutils/tests/LruCache_test.cpp
@@ -221,7 +221,7 @@ TEST_F(LruCacheTest, NoLeak) {
cache.put(ComplexKey(0), ComplexValue(0));
cache.put(ComplexKey(1), ComplexValue(1));
EXPECT_EQ(2U, cache.size());
- assertInstanceCount(2, 3); // the null value counts as an instance
+ assertInstanceCount(2, 3); // the member mNullValue counts as an instance
}
TEST_F(LruCacheTest, Clear) {