Skip to content

Commit

Permalink
typo(tests): ubunut -> ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
schopin-pro committed Jul 6, 2023
1 parent 0966cd1 commit 85078b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/system/test_packaging_apt_dpkg.py
Original file line number Diff line number Diff line change
Expand Up @@ -1072,7 +1072,7 @@ def _setup_foonux_config(self, updates=False, release="jammy", ppa=False):

# install GPG key for ddebs
keyring_dir = os.path.join(config_release_dir, "trusted.gpg.d")
self._copy_ubunut_keyrings(keyring_dir)
self._copy_ubuntu_keyrings(keyring_dir)

Check warning on line 1075 in tests/system/test_packaging_apt_dpkg.py

View check run for this annotation

Codecov / codecov/patch

tests/system/test_packaging_apt_dpkg.py#L1075

Added line #L1075 was not covered by tests
# Create an architecture specific symlink, otherwise it cannot be
# found for armhf in __AptDpkgPackageInfo._build_apt_sandbox() as
# that looks for trusted.gpg.d relative to sources.list.
Expand All @@ -1087,7 +1087,7 @@ def _strip_epoch(version: str) -> str:
"""Strip epoch from Debian package version."""
return version.split(":", maxsplit=1)[-1]

def _copy_ubunut_keyrings(self, keyring_dir: str) -> None:
def _copy_ubuntu_keyrings(self, keyring_dir: str) -> None:

Check warning on line 1090 in tests/system/test_packaging_apt_dpkg.py

View check run for this annotation

Codecov / codecov/patch

tests/system/test_packaging_apt_dpkg.py#L1090

Added line #L1090 was not covered by tests
"""Copy the archive and debug symbol archive keyring."""
os.makedirs(keyring_dir, exist_ok=True)
try:
Expand Down

0 comments on commit 85078b8

Please sign in to comment.