remove timeout test since timeout happens in connection now

This commit is contained in:
J. Nick Koston 2023-11-27 22:56:26 -06:00
parent a6b58b06dc
commit 36b765c5d7
No known key found for this signature in database
2 changed files with 0 additions and 6 deletions

View File

@ -42,5 +42,3 @@ cdef class APIFrameHelper:
cpdef void write_packets(self, list packets, bint debug_enabled)
cdef void _write_bytes(self, object data, bint debug_enabled)
cdef get_handshake_future(self)

View File

@ -137,10 +137,6 @@ class APIFrameHelper:
bitpos += 7
return -1
def get_handshake_future(self) -> None:
"""Get the handshake future."""
return self.ready_future
@abstractmethod
def write_packets(
self, packets: list[tuple[int, bytes]], debug_enabled: bool