diff options
author | Sergio Giro <sgiro@google.com> | 2015-09-30 13:20:02 +0000 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2015-09-30 13:20:02 +0000 |
commit | 8e2c8208198c1c73c7192b1bd5e87868b53297c6 (patch) | |
tree | 93dd959621cabc92ca7dec4ce0937567d9deac07 /libutils | |
parent | db364d251fd72b9689e7573811f6108d9205a4ff (diff) | |
parent | 730fdbb1ca4c39a4d69868f7a261b023f2bea296 (diff) |
am 730fdbb1: Merge "system/core: change LruCache to use unordered_set instead of BasicHashTable"
* commit '730fdbb1ca4c39a4d69868f7a261b023f2bea296':
system/core: change LruCache to use unordered_set instead of BasicHashTable
Diffstat (limited to 'libutils')
-rw-r--r-- | libutils/tests/LruCache_test.cpp | 2 |
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) { |