Skip to content

Commit

Permalink
also check dmidecode on aarch64
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangqq-coder committed Jun 20, 2024
1 parent 8e13954 commit 21685ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integration-tests/test_common_specs.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def test_common_specs(insights_client, tmp_path):
"insights.specs.Specs.uname.json",
"insights.specs.Specs.yum_repos_d.json",
]
if platform.processor() == "x86_64":
if platform.machine() == "x86_64" or platform.machine() == "aarch64":
common_specs.extend(
[
"insights.specs.Specs.dmidecode.json",
Expand Down

0 comments on commit 21685ff

Please sign in to comment.