Skip to content

Commit

Permalink
zephyr: Enable MESH DFU and MBT
Browse files Browse the repository at this point in the history
This allows to run those without MMDL.
  • Loading branch information
sjanc authored and mkasenberg committed May 8, 2024
1 parent 215e5c1 commit 1c0c657
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion autopts/ptsprojects/zephyr/dfu.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def test_cases(ptses):

pts = ptses[0]

if 'MMDL' not in pts.get_project_list():
if 'DFU' not in pts.get_project_list():
return []

stack = get_stack()
Expand Down
2 changes: 1 addition & 1 deletion autopts/ptsprojects/zephyr/mbt.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def test_cases(ptses):

pts = ptses[0]

if 'MMDL' not in pts.get_project_list():
if 'MBT' not in pts.get_project_list():
return []

stack = get_stack()
Expand Down

0 comments on commit 1c0c657

Please sign in to comment.