diff --git a/test/test_basic_logic.py b/test/test_basic_logic.py index fb54fe50a..2e03e5d57 100644 --- a/test/test_basic_logic.py +++ b/test/test_basic_logic.py @@ -1845,7 +1845,7 @@ def test_stream_repr(self): Ensure stream string representation is appropriate. """ s = h2.stream.H2Stream(4, None, 12, 14) - assert repr(s) == ">" + assert repr(s) == "" def sanity_check_data_frame(data_frame, diff --git a/test/test_events.py b/test/test_events.py index a6e8d8379..c9250f806 100644 --- a/test/test_events.py +++ b/test/test_events.py @@ -209,7 +209,7 @@ def test_remotesettingschanged_repr(self): assert repr(e) == ( "" ) @@ -251,7 +251,7 @@ def test_streamreset_repr(self): assert repr(e) == ( "" + "error_code:ENHANCE_YOUR_CALM, remote_reset:False>" ) def test_pushedstreamreceived_repr(self): @@ -286,7 +286,7 @@ def test_settingsacknowledged_repr(self): assert repr(e) == ( "" ) @@ -319,7 +319,7 @@ def test_connectionterminated_repr(self, additional_data, data_repr): e.additional_data = additional_data assert repr(e) == ( - "" % data_repr )