summaryrefslogtreecommitdiff
path: root/tests/integration/base_storage_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/integration/base_storage_test.py')
-rw-r--r--tests/integration/base_storage_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/integration/base_storage_test.py b/tests/integration/base_storage_test.py
index 4870c02..a7ff436 100644
--- a/tests/integration/base_storage_test.py
+++ b/tests/integration/base_storage_test.py
@@ -40,7 +40,7 @@ class BaseStorageTest:
for i in range(self.num_instances):
cache = caches[i]
- cache[f'key_{i}'] == f'value_{i}'
+ assert cache[f'key_{i}'] == f'value_{i}'
assert len(cache) == 2
assert f'key_{i}' in cache and f'key_{i+1}' in cache