diff options
author | Kim Alvefur <zash@zash.se> | 2016-07-13 10:25:52 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2016-07-13 10:25:52 +0200 |
commit | 6aab36d1ad11b6ba9fe66ecbf540028921e745fc (patch) | |
tree | 211c2095c4ed506159c6508b1a901ac0ac56af38 /tests/test_util_cache.lua | |
parent | 4616176276adc08c8ed2379bca0fada582d0cda5 (diff) | |
parent | d76cafb53946682bc1034c872bccca4f28b6696e (diff) | |
download | prosody-6aab36d1ad11b6ba9fe66ecbf540028921e745fc.tar.gz prosody-6aab36d1ad11b6ba9fe66ecbf540028921e745fc.zip |
Merge 0.10->trunk
Diffstat (limited to 'tests/test_util_cache.lua')
-rw-r--r-- | tests/test_util_cache.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_util_cache.lua b/tests/test_util_cache.lua index 78666edc..cbc60bc7 100644 --- a/tests/test_util_cache.lua +++ b/tests/test_util_cache.lua @@ -196,12 +196,12 @@ function new(new) assert_equal(i, 4); local evicted_key, evicted_value; - local c = new(3, function (_key, _value) + local c2 = new(3, function (_key, _value) evicted_key, evicted_value = _key, _value; end); local function set(k, v, should_evict_key, should_evict_value) evicted_key, evicted_value = nil, nil; - c:set(k, v); + c2:set(k, v); assert_equal(evicted_key, should_evict_key); assert_equal(evicted_value, should_evict_value); end @@ -219,7 +219,7 @@ function new(new) local evicted_key, evicted_value; - local c3 = new(1, function (_key, _value, c3) + local c3 = new(1, function (_key, _value) evicted_key, evicted_value = _key, _value; if _key == "a" then -- Sanity check for what we're evicting |