Skip to content
This repository has been archived by the owner on Mar 3, 2023. It is now read-only.

Commit

Permalink
Fix unit-tests
Browse files Browse the repository at this point in the history
  • Loading branch information
xlz-jbleclere committed Dec 16, 2021
1 parent b1f4c66 commit f46d291
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 2 additions & 1 deletion tests/test_drm_bridge.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,8 @@ def run_test_on_design(accelize_drm, design_name ):
assert text_json['product_id']['library'] == 'refdesign'
assert text_json['product_id']['name'] == 'drm_1activator'
assert text_json['extra']['csp'] == 'aws-f1'
assert text_json['extra']['dualclk']
assert 'dualclk' in text_json['extra'], "text_json=%s" % str(text_json)
assert text_json['drm_software'], "text_json=%s" % str(text_json)

# Test controller bridge mailbox read-write content
ref_list = []
Expand Down
1 change: 0 additions & 1 deletion tests/test_metered_mode_on_hw.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,6 @@ def test_metered_start_stop_short_time_in_debug(accelize_drm, conf_json, cred_js
activators.autotest(is_activated=False)
assert sum(drm_manager.get('metered_data')) == 0
async_cb.assert_NoError()
drm_manager.deactivate()
logfile.remove()


Expand Down

0 comments on commit f46d291

Please sign in to comment.