summaryrefslogtreecommitdiff
path: root/tests/cache
diff options
context:
space:
mode:
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 3fbd057289..0dd9208710 100644
--- a/tests/cache/tests.py
+++ b/tests/cache/tests.py
@@ -1439,7 +1439,7 @@ class FileBasedCacheTests(BaseCacheTests, TestCase):
def test_creates_cache_dir_if_nonexistent(self):
os.rmdir(self.dirname)
cache.set('foo', 'bar')
- os.path.exists(self.dirname)
+ self.assertTrue(os.path.exists(self.dirname))
def test_get_ignores_enoent(self):
cache.set('foo', 'bar')