Merge pull request #13607 from mattclay/test-cache-typo

Fixed import typo for memcache module in tests.
This commit is contained in:
Brian Coca 2015-12-21 10:23:38 -05:00
commit e957335b0d

View file

@ -26,7 +26,7 @@ from ansible.plugins.cache.memory import CacheModule as MemoryCache
HAVE_MEMCACHED = True
try:
import memcached
import memcache
except ImportError:
HAVE_MEMCACHED = False
else: