We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef8d9e3 commit 255542bCopy full SHA for 255542b
packages/stompman/test_stompman/test_connection_manager.py
@@ -1,5 +1,4 @@
1
import asyncio
2
-import time
3
from collections.abc import AsyncGenerator, AsyncIterable
4
from ssl import SSLContext
5
from typing import Literal, Self
@@ -8,7 +7,6 @@
8
7
import pytest
9
from stompman import (
10
AnyServerFrame,
11
- Client,
12
ConnectedFrame,
13
ConnectFrame,
14
ConnectionLostError,
@@ -18,7 +16,6 @@
18
16
FailedAllWriteAttemptsError,
19
17
Heartbeat,
20
MessageFrame,
21
- ReceiptFrame,
22
)
23
from stompman.connection_lifespan import EstablishedConnectionResult
24
from stompman.connection_manager import ActiveConnectionState
@@ -27,7 +24,6 @@
27
BaseMockConnection,
28
25
EnrichedConnectionManager,
29
26
build_dataclass,
30
- create_spying_connection,
31
32
33
pytestmark = [pytest.mark.anyio, pytest.mark.usefixtures("mock_sleep")]
0 commit comments