diff options
| author | Jannis Leidel <jannis@leidel.info> | 2011-08-12 14:14:15 +0000 |
|---|---|---|
| committer | Jannis Leidel <jannis@leidel.info> | 2011-08-12 14:14:15 +0000 |
| commit | bce890ace4a97ab7a7a9b918f1452c6592d9b08e (patch) | |
| tree | bda6cf9653f58e6f77d30a8a26daf8ebe77772ac /tests/regressiontests/cache/tests.py | |
| parent | 4a993fab18892596242a0b22c8fbd6c3ae2dde57 (diff) | |
Fixed #16584 -- Fixed a bunch of typos in code comments. Thanks, Bernhard Essl.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16598 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests/regressiontests/cache/tests.py')
| -rw-r--r-- | tests/regressiontests/cache/tests.py | 4 |
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) |
