diff options
| author | Ed Morley <emorley@mozilla.com> | 2016-08-31 18:15:22 +0100 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-08-31 17:23:41 -0400 |
| commit | d8ef5b0e6501692b8b767ebccddc936f496d77e8 (patch) | |
| tree | 9bc2aaa5e9acdf63d401e617727953570d7322dd /tests | |
| parent | c8058dc241e7eea49ea6cf0e0abe7c4c38b79783 (diff) | |
Fixed #27152 -- Supported comma delimiter in memcached LOCATION string.
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/cache/tests.py | 1 |
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} |
