Skip to content

Commit f35f5c0

Browse files
committed
Remove test incorrectly included by cherry-pick.
1 parent 3d056b7 commit f35f5c0

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

Lib/test/test_email/test__header_value_parser.py

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2946,19 +2946,6 @@ def test_address_list_with_unicode_names_in_quotes(self):
29462946
'=?utf-8?q?H=C3=BCbsch?= Kaktus <[email protected]>,\n'
29472947
' =?utf-8?q?bei=C3=9Ft_bei=C3=9Ft?= <[email protected]>\n')
29482948

2949-
def test_address_list_with_list_separator_after_fold(self):
2950-
a = 'x' * 66 + '@example.com'
2951-
to = f'{a}, "Hübsch Kaktus" <[email protected]>'
2952-
self._test(parser.get_address_list(to)[0],
2953-
f'{a},\n =?utf-8?q?H=C3=BCbsch?= Kaktus <[email protected]>\n')
2954-
2955-
a = '.' * 79 # ('.' is a special, so must be in quoted-string.)
2956-
to = f'"{a}" <[email protected]>, "Hübsch Kaktus" <[email protected]>'
2957-
self._test(parser.get_address_list(to)[0],
2958-
f'"{a}"\n'
2959-
' <[email protected]>, =?utf-8?q?H=C3=BCbsch?= Kaktus '
2960-
2961-
29622949
def test_address_list_with_specials_in_long_quoted_string(self):
29632950
# Regression for gh-80222.
29642951
policy = self.policy.clone(max_line_length=40)

0 commit comments

Comments
 (0)