Skip to content

Commit

Permalink
1.6.1dev: skip NotificationTestCase.test_multiline_header with Pyth…
Browse files Browse the repository at this point in the history
…on 3.12.4 (refs #13763)

git-svn-id: http://trac.edgewall.org/intertrac/log:/branches/1.6-stable@17827 af82e41b-90c4-0310-8c96-b1721e28e2e2
  • Loading branch information
jomae committed Jun 25, 2024
1 parent 70a1906 commit 7f65d62
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions trac/ticket/tests/notification.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
import io
import quopri
import re
import sys
import unittest
from datetime import datetime, timedelta

Expand Down Expand Up @@ -715,6 +716,8 @@ def test_admit_domains(self):
'[email protected]', '[email protected]'},
cclist)

@unittest.skipIf(sys.version_info[:3] == (3, 12, 4),
'python/cpython#120930')
def test_multiline_header(self):
"""Encoded headers split into multiple lines"""
self.env.config.set('notification', 'mime_encoding', 'qp')
Expand Down

0 comments on commit 7f65d62

Please sign in to comment.