summaryrefslogtreecommitdiff
path: root/tests/cache
diff options
context:
space:
mode:
Diffstat (limited to 'tests/cache')
-rw-r--r--tests/cache/tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/cache/tests.py b/tests/cache/tests.py
index 9a903ef203..5cee2d84a5 100644
--- a/tests/cache/tests.py
+++ b/tests/cache/tests.py
@@ -173,8 +173,8 @@ class DummyCacheTests(SimpleTestCase):
def test_set_many(self):
"set_many does nothing for the dummy cache backend"
- cache.set_many({'a': 1, 'b': 2})
- cache.set_many({'a': 1, 'b': 2}, timeout=2, version='1')
+ self.assertEqual(cache.set_many({'a': 1, 'b': 2}), [])
+ self.assertEqual(cache.set_many({'a': 1, 'b': 2}, timeout=2, version='1'), [])
def test_delete_many(self):
"delete_many does nothing for the dummy cache backend"