aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorArthur Zamarin <arthurzam@gentoo.org>2024-03-02 09:13:16 +0200
committerArthur Zamarin <arthurzam@gentoo.org>2024-03-02 09:15:06 +0200
commit2ed2a36a62f3bb9801c187c053ec67ec6bb47565 (patch)
treeac8e494195c7316e1d194bfcebf186144f3b238b /tests
parentPkgBadlyFormedXml: convert to error (diff)
downloadpkgcheck-2ed2a36a62f3bb9801c187c053ec67ec6bb47565.tar.gz
pkgcheck-2ed2a36a62f3bb9801c187c053ec67ec6bb47565.tar.bz2
pkgcheck-2ed2a36a62f3bb9801c187c053ec67ec6bb47565.zip
NewerEAPIAvailable: committing new ebuilds with old EAPI
Catch cases where new ebuilds are committed with old EAPIs. This is checked during `--commits` stage. Resolves: https://github.com/pkgcore/pkgcheck/issues/666 Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'tests')
-rw-r--r--tests/checks/test_git.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/checks/test_git.py b/tests/checks/test_git.py
index ab6efee2..12c5e4f0 100644
--- a/tests/checks/test_git.py
+++ b/tests/checks/test_git.py
@@ -38,7 +38,7 @@ class TestGitCommitMessageCheck(ReportTestCase):
check = git_mod.GitCommitMessageCheck(options)
def test_sign_offs(self):
- # assert that it checks for both author and comitter
+ # assert that it checks for both author and committer
r = self.assertReport(
self.check, FakeCommit(author="user1", committer="user2", message=["blah"])
)