summaryrefslogtreecommitdiff
path: root/tests/cache
diff options
context:
space:
mode:
authorGeorge Marshall <george@georgemarshall.name>2016-03-06 00:48:06 -0800
committerTim Graham <timograham@gmail.com>2016-03-07 06:51:43 -0500
commit4702c1ac98b284cacffcf5fbb0db9b85f0c2f8ba (patch)
treeb7cfd61c2877b46d22d8d3460b15a2ed024f347e /tests/cache
parentd38da1cc401f61ff06aeda31e2b1b1f3be242efd (diff)
[1.9.x] Fixed #26331 -- Fixed test function names with typos
Backport of 75614f6d4c1a3fe779a75eb3e787452cccd1d814 from master
Diffstat (limited to 'tests/cache')
-rw-r--r--tests/cache/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/cache/tests.py b/tests/cache/tests.py
index 7fd9808ca6..b1df2c3eb9 100644
--- a/tests/cache/tests.py
+++ b/tests/cache/tests.py
@@ -1329,7 +1329,7 @@ class DefaultNonExpiringCacheKeyTests(SimpleTestCase):
self.assertIsNotNone(cache._expire_info[cache_key])
@override_settings(CACHES=NEVER_EXPIRING_CACHES_SETTINGS)
- def text_caches_set_with_timeout_as_none_set_non_expiring_key(self):
+ def test_caches_set_with_timeout_as_none_set_non_expiring_key(self):
"""Memory caches that have the TIMEOUT parameter set to `None` will set
a non expiring key by default.
"""