Refs CVE-2020-13254 -- Fixed cache.tests when KEY_PREFIX is defined.

Follow up to 2c82414914.
This commit is contained in:
Mariusz Felisiak 2020-06-03 12:37:37 +02:00
parent 54975780ee
commit 229c9c6653
1 changed files with 1 additions and 1 deletions

View File

@ -1275,7 +1275,7 @@ class BaseMemcachedTests(BaseCacheTests):
Whilst other backends merely warn, memcached should raise for an
invalid key.
"""
msg = expected_warning.replace(key, ':1:%s' % key)
msg = expected_warning.replace(key, cache.make_key(key))
with self.assertRaisesMessage(InvalidCacheKey, msg):
cache.set(key, 'value')