Skip to content

Commit

Permalink
Add spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Nov 9, 2024
1 parent 8e590fc commit 657a617
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/test_blurb.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,23 +217,23 @@ def test_parse():
r"Blurb 'body' can't start with 'gh-'!",
),
(
"..gh-issue: 1\n..section: IDLE\nHello world!",
".. gh-issue: 1\n.. section: IDLE\nHello world!",
r"The gh-issue number must be 32426 or above, not a PR number",
),
(
"..bpo: one-two\n..section: IDLE\nHello world!",
".. bpo: one-two\n.. section: IDLE\nHello world!",
r"Invalid bpo issue number! \('one-two'\)",
),
(
"..gh-issue: one-two\n..section: IDLE\nHello world!",
".. gh-issue: one-two\n.. section: IDLE\nHello world!",
r"Invalid GitHub issue number! \('one-two'\)",
),
(
"..gh-issue: 123456\n..section: Funky Kong\nHello world!",
".. gh-issue: 123456\n.. section: Funky Kong\nHello world!",
r"Invalid section 'Funky Kong'! You must use one of the predefined sections",
),
(
"..gh-issue: 123456\nHello world!",
".. gh-issue: 123456\nHello world!",
r"No 'section' specified. You must provide one!",
),
(
Expand Down

0 comments on commit 657a617

Please sign in to comment.