FIx fluky test in test_api_logs

This commit is contained in:
Matthias 2020-09-11 20:00:36 +02:00
parent 13994fac92
commit 50f0483d9a
1 changed files with 1 additions and 1 deletions

View File

@ -435,7 +435,7 @@ def test_api_logs(botclient):
assert len(rc.json) == 2
assert 'logs' in rc.json
# Using a fixed comparison here would make this test fail!
assert rc.json['log_count'] > 10
assert rc.json['log_count'] > 1
assert len(rc.json['logs']) == rc.json['log_count']
assert isinstance(rc.json['logs'][0], list)