Skip to content

Commit

Permalink
Fix config options in test_check_meta_architecture
Browse files Browse the repository at this point in the history
  • Loading branch information
tomschr committed Jun 5, 2024
1 parent 1f4839e commit 3afed36
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,8 @@ def test_check_meta_architecture(xmlparser):
<para/>
</article>"""
tree = etree.ElementTree(etree.fromstring(xmlcontent, parser=xmlparser))
config = dict(metadata=dict(require_meta_architecture=True))
config = dict(metadata=dict(require_meta_architecture=True,
valid_meta_architecture=["x86_64", "POWER"]))
assert check_meta_architecture(tree, config) is None


Expand Down

0 comments on commit 3afed36

Please sign in to comment.