We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cdbfac0 commit 70c295eCopy full SHA for 70c295e
tests/integration_tests/style/test_repo.py
@@ -44,8 +44,8 @@ def test_repo_validate_changelog():
44
errors = []
45
for lineno, line in enumerate(changelog, start=1):
46
if line.startswith("## "):
47
- if not re.match(r"^## \\\[.+\\\]$", line):
48
- msg = "Level 2 headings (versions) should be wrapped in \\[\\]"
+ if not re.match(r"^## \[.+\]$", line):
+ msg = "Level 2 headings (versions) should be wrapped in []"
49
errors.append((lineno, msg, line))
50
if line.startswith("### "):
51
if not re.match(r"^### (Added|Changed|Deprecated|Removed|Fixed)$", line):
0 commit comments