summaryrefslogtreecommitdiffstats
path: root/gitlint-core/gitlint/tests/rules/test_body_rules.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2023-03-11 08:03:07 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2023-03-11 08:03:07 +0000
commitdcc28a9a987457acf9e2c8249a9df5e40143eba3 (patch)
treea3b44db00ff34f0dee0406875e7320c4dce3041e /gitlint-core/gitlint/tests/rules/test_body_rules.py
parentReleasing debian version 0.19.0~dev-1. (diff)
downloadgitlint-dcc28a9a987457acf9e2c8249a9df5e40143eba3.tar.xz
gitlint-dcc28a9a987457acf9e2c8249a9df5e40143eba3.zip
Merging upstream version 0.19.1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'gitlint-core/gitlint/tests/rules/test_body_rules.py')
-rw-r--r--gitlint-core/gitlint/tests/rules/test_body_rules.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/gitlint-core/gitlint/tests/rules/test_body_rules.py b/gitlint-core/gitlint/tests/rules/test_body_rules.py
index 94b1edf..c142e6e 100644
--- a/gitlint-core/gitlint/tests/rules/test_body_rules.py
+++ b/gitlint-core/gitlint/tests/rules/test_body_rules.py
@@ -1,5 +1,5 @@
-from gitlint.tests.base import BaseTestCase
from gitlint import rules
+from gitlint.tests.base import BaseTestCase
class BodyRuleTests(BaseTestCase):
@@ -100,13 +100,13 @@ class BodyRuleTests(BaseTestCase):
expected_violation = rules.RuleViolation("B5", "Body message is too short (21<120)", "å" * 21, 3)
rule = rules.BodyMinLength({"min-length": 120})
- commit = self.gitcommit("Title\n\n{}\n".format("å" * 21)) # pylint: disable=consider-using-f-string
+ commit = self.gitcommit("Title\n\n{}\n".format("å" * 21))
violations = rule.validate(commit)
self.assertListEqual(violations, [expected_violation])
# Make sure we don't get the error if the body-length is exactly the min-length
rule = rules.BodyMinLength({"min-length": 8})
- commit = self.gitcommit("Tïtle\n\n{}\n".format("å" * 8)) # pylint: disable=consider-using-f-string
+ commit = self.gitcommit("Tïtle\n\n{}\n".format("å" * 8))
violations = rule.validate(commit)
self.assertIsNone(violations)