summaryrefslogtreecommitdiff
path: root/tests/cache
diff options
context:
space:
mode:
authorEd Morley <emorley@mozilla.com>2016-08-31 18:15:22 +0100
committerTim Graham <timograham@gmail.com>2016-08-31 17:23:41 -0400
commitd8ef5b0e6501692b8b767ebccddc936f496d77e8 (patch)
tree9bc2aaa5e9acdf63d401e617727953570d7322dd /tests/cache
parentc8058dc241e7eea49ea6cf0e0abe7c4c38b79783 (diff)
Fixed #27152 -- Supported comma delimiter in memcached LOCATION string.
Diffstat (limited to 'tests/cache')
-rw-r--r--tests/cache/tests.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/cache/tests.py b/tests/cache/tests.py
index f31b3e1957..04c523e853 100644
--- a/tests/cache/tests.py
+++ b/tests/cache/tests.py
@@ -1160,6 +1160,7 @@ class BaseMemcachedTests(BaseCacheTests):
locations = [
['server1.tld', 'server2:11211'],
'server1.tld;server2:11211',
+ 'server1.tld,server2:11211',
]
for location in locations:
params = {'BACKEND': self.base_params['BACKEND'], 'LOCATION': location}