Removes tuple unpacking from memcache test

Per pep 3113 Python 3 does not support tuple parameter
unpacking. This change removes the tuple from the function
param in the memcache plugin test since nothing is done
with it anyway.

Change-Id: I08c84cab308bbb405e5864fb0417f00c5310e71a
Closes-Bug: 1689347
Signed-off-by: Michael Rice <michael@michaelrice.org>
This commit is contained in:
Michael Rice 2017-05-08 12:12:26 -05:00
parent a30fe1d79d
commit 0268ce450c
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ class TestMemcache(object):
def test_get_memcached_stats(self, monkeypatch): def test_get_memcached_stats(self, monkeypatch):
"""Ensure that get_memcached_stats() works.""" """Ensure that get_memcached_stats() works."""
def mock_memcache_client(cls, (conn_tuple)): def mock_memcache_client(cls, conn_tuple):
"""Mock a memcache client class.""" """Mock a memcache client class."""
return None return None