Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 1 addition & 3 deletions tests/integration_tests/modules/test_apt.py
Original file line number Diff line number Diff line change
Expand Up @@ -269,9 +269,7 @@ def test_security(self, class_client: IntegrationInstance):
# 3 lines from main, universe, and multiverse
sec_url = "deb http://security.ubuntu.com/ubuntu"
if class_client.settings.PLATFORM == "azure":
sec_url = (
"deb http://azure.archive.ubuntu.com/ubuntu/ jammy-security"
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes. thanks for the fix.

)
sec_url = "deb http://azure.archive.ubuntu.com/ubuntu/"
sec_src_url = sec_url.replace("deb ", "# deb-src ")
assert 3 == sources_list.count(sec_url)
assert 3 == sources_list.count(sec_src_url)
Expand Down
2 changes: 1 addition & 1 deletion tests/integration_tests/test_shell_script_by_frequency.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
(PER_ONCE_FILE, "once.sh", "x-shellscript-per-once"),
]

USER_DATA, errors = create_mime_message(FILES)
USER_DATA = create_mime_message(FILES)[0].as_string()


@pytest.mark.ci
Expand Down