summaryrefslogtreecommitdiffstats
path: root/gitlint-core/gitlint/tests/config/test_rule_collection.py
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--gitlint-core/gitlint/tests/config/test_rule_collection.py (renamed from gitlint/tests/config/test_rule_collection.py)2
1 files changed, 1 insertions, 1 deletions
diff --git a/gitlint/tests/config/test_rule_collection.py b/gitlint-core/gitlint/tests/config/test_rule_collection.py
index 5a50be0..17b50cc 100644
--- a/gitlint/tests/config/test_rule_collection.py
+++ b/gitlint-core/gitlint/tests/config/test_rule_collection.py
@@ -19,7 +19,7 @@ class RuleCollectionTests(BaseTestCase):
self.assertEqual(len(collection), 1)
self.assertDictEqual(collection._rules, OrderedDict({"my-rĂ¼le": expected}))
- # Need to explicitely compare expected attributes as the rule.__eq__ method does not compare these attributes
+ # Need to explicitly compare expected attributes as the rule.__eq__ method does not compare these attributes
self.assertEqual(collection._rules[expected.id].my_attr, expected.my_attr)
self.assertEqual(collection._rules[expected.id].my_attr2, expected.my_attr2)