1
0
mirror of https://github.com/ansible-collections/community.general.git synced 2025-07-29 07:41:16 +03:00

Fix more plugin unit tests. (#51)

This commit is contained in:
Felix Fontein
2020-03-25 23:37:34 +01:00
committed by GitHub
parent a5627744f1
commit 76880e2403
3 changed files with 5 additions and 5 deletions

View File

@ -33,4 +33,4 @@ def test_redis_cachemodule():
def test_redis_cachemodule_with_loader():
# The _uri option is required for the redis plugin
assert isinstance(cache_loader.get('redis', **{'_uri': '127.0.0.1:6379:1'}), RedisCache)
assert isinstance(cache_loader.get('community.general.redis', **{'_uri': '127.0.0.1:6379:1'}), RedisCache)