Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release module-streams and container-list assertions #13746

Merged
merged 1 commit into from
Jan 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions tests/foreman/ui/test_capsulecontent.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,9 +180,9 @@ def test_positive_content_counts_for_mixed_cv(
assert (
f'{s_repo.content_counts["package_group"]} Package groups' in c_repo
), 'Package groups count does not match'
# assert (
# f'{s_repo.content_counts["module_stream"]} Module streams' in c_repo
# ), 'Module streams count does not match'
assert (
f'{s_repo.content_counts["module_stream"]} Module streams' in c_repo
), 'Module streams count does not match'
elif s_repo.content_type == 'file':
assert (
f'{s_repo.content_counts["file"]} Files' in c_repo
Expand All @@ -194,10 +194,10 @@ def test_positive_content_counts_for_mixed_cv(
assert (
f'{s_repo.content_counts["docker_manifest"]} Container manifests' in c_repo
), 'Container manifests count does not match'
# assert (
# f'{s_repo.content_counts["docker_manifest_list"]} Container manifest lists'
# in c_repo
# ), 'Container manifest lists count does not match'
assert (
f'{s_repo.content_counts["docker_manifest_list"]} Container manifest lists'
in c_repo
), 'Container manifest lists count does not match'
elif s_repo.content_type == 'ansible_collection':
assert (
f'{s_repo.content_counts["ansible_collection"]} Ansible collections'
Expand Down
Loading