Add missing provision in cache test

This commit is contained in:
lash 2022-03-12 14:22:55 +00:00
parent d5f19248da
commit bdebeb6010
Signed by: lash
GPG Key ID: 21D2E7BB88C2A746
2 changed files with 1 additions and 3 deletions

View File

@ -36,8 +36,6 @@ class Store:
for v in ['state', 'change', 'set', 'unset']:
setattr(self, v, getattr(self.state_store, v))
logg.debug('cache {}'.format(cache))
def put(self, k, v, cache_adapter=CacheTx):
n = self.counter.next()

View File

@ -19,7 +19,7 @@ from chainqueue.cache import (
from tests.base_shep import TestShepBase
from tests.common import (
MockTokenCache,
MockTokenCacheTx,
MockCacheTokenTx,
)
logging.basicConfig(level=logging.DEBUG)