blob: 623b53b323760d82b3382d55dd7f91b77b6583a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
diff --git a/src/zope/exceptions/tests/test_exceptionformatter.py b/src/zope/exceptions/tests/test_exceptionformatter.py
index 92ea79a..0e18d8d 100644
--- a/src/zope/exceptions/tests/test_exceptionformatter.py
+++ b/src/zope/exceptions/tests/test_exceptionformatter.py
@@ -24,6 +24,7 @@ from urllib.error import HTTPError
IS_PY39_OR_GREATER = sys.version_info >= (3, 9)
+IS_PY313_OR_GREATER = sys.version_info >= (3, 13)
class TextExceptionFormatterTests(unittest.TestCase):
@@ -763,8 +764,10 @@ class Test_format_exception(unittest.TestCase):
</ul><p> File "<string>", line 1<br />
import<br />
^<br />
- SyntaxError: invalid syntax<br />
+ SyntaxError: {error}<br />
</p>""").format(
+ error="Expected one or more names after 'import'"
+ if IS_PY313_OR_GREATER else 'invalid syntax',
module='zope.exceptions.tests.test_exceptionformatter',
fn='test_format_exception_as_html',
)
|