summaryrefslogtreecommitdiff
path: root/tests/regressiontests/cache/tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/regressiontests/cache/tests.py')
-rw-r--r--tests/regressiontests/cache/tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/regressiontests/cache/tests.py b/tests/regressiontests/cache/tests.py
index 6a5201ffeb..7eafe12917 100644
--- a/tests/regressiontests/cache/tests.py
+++ b/tests/regressiontests/cache/tests.py
@@ -220,7 +220,7 @@ class BaseCacheTests(object):
self.assertEqual(self.cache.has_key("goodbye1"), False)
def test_in(self):
- # The in operator can be used to inspet cache contents
+ # The in operator can be used to inspect cache contents
self.cache.set("hello2", "goodbye2")
self.assertEqual("hello2" in self.cache, True)
self.assertEqual("goodbye2" in self.cache, False)
@@ -338,7 +338,7 @@ class BaseCacheTests(object):
self.assertEqual(self.cache.get(key), value)
def test_binary_string(self):
- # Binary strings should be cachable
+ # Binary strings should be cacheable
from zlib import compress, decompress
value = 'value_to_be_compressed'
compressed_value = compress(value)