Minor: Correct type pyhton => python

This commit is contained in:
Toshio Kuratomi 2015-12-14 08:50:37 -08:00
parent c9eb41109f
commit 457f86f61a
2 changed files with 2 additions and 2 deletions

View file

@ -110,6 +110,6 @@ class TestAbstractClass(unittest.TestCase):
def test_memory_cachemodule(self):
self.assertIsInstance(MemoryCache(), MemoryCache)
@unittest.skipUnless(HAVE_REDIS, 'Redis pyhton module not installed')
@unittest.skipUnless(HAVE_REDIS, 'Redis python module not installed')
def test_redis_cachemodule(self):
self.assertIsInstance(RedisCache(), RedisCache)