Rehabilitate tests after chain spec, syncer and task exception retry handling changes

This commit is contained in:
nolash
2021-02-24 08:21:14 +01:00
parent 841a366a2f
commit 744c7b6840
19 changed files with 109 additions and 66 deletions

View File

@@ -67,7 +67,7 @@ def test_callback_tcp(
logg.debug('recived {} '.format(data))
o = json.loads(echo)
try:
assert o == data
assert o['result'] == data
except Exception as e:
self.exception = e
@@ -130,7 +130,7 @@ def test_callback_redis(
o = json.loads(echo['data'])
logg.debug('recived {} '.format(o))
try:
assert o == data
assert o['result'] == data
except Exception as e:
self.exception = e