Skip to content

Commit ee43c48

Browse files
committed
Remove extra parentheses
1 parent 1e6dd0f commit ee43c48

File tree

1 file changed

+11
-19
lines changed

1 file changed

+11
-19
lines changed

tests/test_blurb.py

Lines changed: 11 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,8 @@ def test_unsanitize_section_changed(section, expected):
5151
(
5252
"This is a test of the textwrap_body function with a string. It should wrap the text to 79 characters.",
5353
"",
54-
(
55-
"This is a test of the textwrap_body function with a string. It should wrap\n"
56-
"the text to 79 characters.\n"
57-
),
54+
"This is a test of the textwrap_body function with a string. It should wrap\n"
55+
"the text to 79 characters.\n",
5856
),
5957
(
6058
[
@@ -63,32 +61,26 @@ def test_unsanitize_section_changed(section, expected):
6361
"It should wrap the text to 79 characters.",
6462
],
6563
"",
66-
(
67-
"This is a test of the textwrap_body function with an iterable of strings. It\n"
68-
"should wrap the text to 79 characters.\n"
69-
),
64+
"This is a test of the textwrap_body function with an iterable of strings. It\n"
65+
"should wrap the text to 79 characters.\n",
7066
),
7167
(
7268
"This is a test of the textwrap_body function with a string and subsequent indent.",
7369
" ",
74-
(
75-
"This is a test of the textwrap_body function with a string and subsequent\n"
76-
" indent.\n"
77-
),
70+
"This is a test of the textwrap_body function with a string and subsequent\n"
71+
" indent.\n",
7872
),
7973
(
8074
"This is a test of the textwrap_body function with a bullet list and subsequent indent. The list should not be wrapped.\n"
8175
"\n"
8276
"* Item 1\n"
8377
"* Item 2\n",
8478
" ",
85-
(
86-
"This is a test of the textwrap_body function with a bullet list and\n"
87-
" subsequent indent. The list should not be wrapped.\n"
88-
"\n"
89-
" * Item 1\n"
90-
" * Item 2\n"
91-
),
79+
"This is a test of the textwrap_body function with a bullet list and\n"
80+
" subsequent indent. The list should not be wrapped.\n"
81+
"\n"
82+
" * Item 1\n"
83+
" * Item 2\n",
9284
),
9385
),
9486
)

0 commit comments

Comments
 (0)