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

Fix typo in test file #2018

Merged
merged 1 commit into from
Nov 14, 2023
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
4 changes: 2 additions & 2 deletions tests/test_fill_sack_from_repos_in_cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ def test_exception_with_checksum_mismatch_and_only_repomd(self):
self.assertRaises(dnf.exceptions.RepoError,
self.test_base.fill_sack_from_repos_in_cache, load_system_repo=False)

def test_checksum_mistmatch_regenerates_solv(self):
def test_checksum_mismatch_regenerates_solv(self):
self._setUp_from_repo_path(os.path.join(os.path.abspath(os.path.dirname(__file__)), "repos/rpm"))
self._create_cache_for_repo(os.path.join(os.path.abspath(os.path.dirname(__file__)), "repos/drpm"),
self.tmpdir, "drpm-repo")
Expand All @@ -223,7 +223,7 @@ def test_checksum_mistmatch_regenerates_solv(self):
os.path.join(self.tmpdir, "cache/test-repo.solv"))

# Now we only have cache with solvx, mismatching solv file and xml metadata.
# Checksum mistmatch causes regeneration of solv file and repo works.
# Checksum mismatch causes regeneration of solv file and repo works.

self.test_base.fill_sack_from_repos_in_cache(load_system_repo=False)

Expand Down
Loading