@@ -51,10 +51,8 @@ def test_unsanitize_section_changed(section, expected):
51
51
(
52
52
"This is a test of the textwrap_body function with a string. It should wrap the text to 79 characters." ,
53
53
"" ,
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 " ,
58
56
),
59
57
(
60
58
[
@@ -63,32 +61,26 @@ def test_unsanitize_section_changed(section, expected):
63
61
"It should wrap the text to 79 characters." ,
64
62
],
65
63
"" ,
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 " ,
70
66
),
71
67
(
72
68
"This is a test of the textwrap_body function with a string and subsequent indent." ,
73
69
" " ,
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 " ,
78
72
),
79
73
(
80
74
"This is a test of the textwrap_body function with a bullet list and subsequent indent. The list should not be wrapped.\n "
81
75
"\n "
82
76
"* Item 1\n "
83
77
"* Item 2\n " ,
84
78
" " ,
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 " ,
92
84
),
93
85
),
94
86
)
0 commit comments