add asserts to test

This commit is contained in:
Cayo Puigdefabregas 2021-01-21 12:32:55 +01:00
parent ff77e3b065
commit 8820395211
1 changed files with 3 additions and 1 deletions

View File

@ -764,7 +764,9 @@ def test_snapshot_bug_smallint_hdd(app: Devicehub, user: UserClient):
snapshot_file = file('asus-eee-1000h.snapshot.bug1857') snapshot_file = file('asus-eee-1000h.snapshot.bug1857')
snapshot, _ = user.post(res=Snapshot, data=snapshot_file) snapshot, _ = user.post(res=Snapshot, data=snapshot_file)
# assert '2001-01-01T00:00:00+00:00' in end_times act = [act for act in snapshot['actions'] if act['type'] == 'TestDataStorage'][0]
assert act['currentPendingSectorCount'] == 473302660
assert act['offlineUncorrectable'] == 182042944
tmp_snapshots = app.config['TMP_SNAPSHOTS'] tmp_snapshots = app.config['TMP_SNAPSHOTS']
shutil.rmtree(tmp_snapshots) shutil.rmtree(tmp_snapshots)