aboutsummaryrefslogtreecommitdiffstats
path: root/community/py3-h2/py311.patch
blob: 935bf5989fa85efa76bd3963a48891a967085b2c (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
Patch-Source: https://github.com/python-hyper/h2/pull/1269
From b892f39566e03591e9556e94708d9b208182ffab Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Robert-Andr=C3=A9=20Mauchin?= <zebob.m@gmail.com>
Date: Sun, 3 Jul 2022 12:05:05 +0200
Subject: [PATCH] Fix repr() checks for Python 3.11

In Python 3.11, repr() was modified, this commit fixes the
assertions to match the new repr() behavior.

Fix #1268
---
 test/test_events.py | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/test/test_events.py b/test/test_events.py
index a6e8d8379..954ca9921 100644
--- a/test/test_events.py
+++ b/test/test_events.py
@@ -209,7 +209,7 @@ def test_remotesettingschanged_repr(self):
 
         assert repr(e) == (
             "<RemoteSettingsChanged changed_settings:{ChangedSetting("
-            "setting=SettingCodes.INITIAL_WINDOW_SIZE, original_value=65536, "
+            "setting=4, original_value=65536, "
             "new_value=32768)}>"
         )
 
@@ -251,7 +251,7 @@ def test_streamreset_repr(self):
 
         assert repr(e) == (
             "<StreamReset stream_id:919, "
-            "error_code:ErrorCodes.ENHANCE_YOUR_CALM, remote_reset:False>"
+            "error_code:11, remote_reset:False>"
         )
 
     def test_pushedstreamreceived_repr(self):
@@ -286,7 +286,7 @@ def test_settingsacknowledged_repr(self):
 
         assert repr(e) == (
             "<SettingsAcknowledged changed_settings:{ChangedSetting("
-            "setting=SettingCodes.INITIAL_WINDOW_SIZE, original_value=65536, "
+            "setting=4, original_value=65536, "
             "new_value=32768)}>"
         )
 
@@ -319,7 +319,7 @@ def test_connectionterminated_repr(self, additional_data, data_repr):
         e.additional_data = additional_data
 
         assert repr(e) == (
-            "<ConnectionTerminated error_code:ErrorCodes.INADEQUATE_SECURITY, "
+            "<ConnectionTerminated error_code:12, "
             "last_stream_id:33, additional_data:%s>" % data_repr
         )