Skip to content

Commit d1db48e

Browse files
Fix UTG issues (iteration 1)
1 parent 9841977 commit d1db48e

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

tests/test_readme.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,12 @@ def test_readme_exists_and_non_empty():
2323

2424
def test_title_and_intro_present():
2525
text = load_readme_text()
26-
assert re.search(r"^#\s+Commit-Check GitHub Action\s*$", text, re.M), "Missing H1 title"
27-
assert "A GitHub Action for checking commit message" in text, "Missing introductory sentence"
26+
assert re.search(
27+
r"^#\s+Commit-Check GitHub Action\s*$", text, re.M
28+
), "Missing H1 title"
29+
assert (
30+
"A GitHub Action for checking commit message" in text
31+
), "Missing introductory sentence"
2832

2933

3034
def test_badges_section_contains_expected_badges():

0 commit comments

Comments
 (0)