We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 603ff74 commit 38e6381Copy full SHA for 38e6381
Lib/test/test_email/test_message.py
@@ -1010,8 +1010,9 @@ def test_no_wrapping_max_line_length(self):
1010
with self.subTest(max_line_length=n):
1011
self.do_test_no_wrapping_max_line_length(n)
1012
1013
- def do_test_no_wrapping_max_line_length(self, n):
1014
- pol = policy.default.clone(max_line_length=n)
+ def do_test_no_wrapping_max_line_length(self, falsey):
+ self.assertFalse(falsey)
1015
+ pol = policy.default.clone(max_line_length=falsey)
1016
subj = "S" * 100
1017
body = "B" * 100
1018
msg = EmailMessage(policy=pol)
0 commit comments