test: remove unnecessary comment

This commit is contained in:
tanishqtayade 2026-06-26 13:37:29 +05:30
parent 48913efb7d
commit a0d5207846
1 changed files with 0 additions and 1 deletions

View File

@ -310,7 +310,6 @@ class TestLocalCache:
assert cache[str(x)] == x
def test_cache_with_zero_limit(self):
# limit=0 means cache is disabled, no items should be stored
cache = LocalCache(limit=0)
cache["a"] = 1
cache["b"] = 2