Skip to content

Commit b65cdc4

Browse files
committed
Update
1 parent 9633645 commit b65cdc4

11 files changed

+5
-5
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

tests/test_connection_lifespan.py renamed to packages/stompman/test_stompman/test_connection_lifespan.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
ReceiptFrame,
2323
UnsupportedProtocolVersion,
2424
)
25-
from tests.conftest import (
25+
from test_stompman.conftest import (
2626
BaseMockConnection,
2727
EnrichedClient,
2828
build_dataclass,

tests/test_connection_manager.py renamed to packages/stompman/test_stompman/test_connection_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
)
1919
from stompman.connection_manager import ActiveConnectionState
2020

21-
from tests.conftest import BaseMockConnection, EnrichedConnectionManager, NoopLifespan, build_dataclass
21+
from test_stompman.conftest import BaseMockConnection, EnrichedConnectionManager, NoopLifespan, build_dataclass
2222

2323
pytestmark = [pytest.mark.anyio, pytest.mark.usefixtures("mock_sleep")]
2424

tests/test_errors.py renamed to packages/stompman/test_stompman/test_errors.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import pytest
44

55
import stompman
6-
from tests.conftest import build_dataclass
6+
from test_stompman.conftest import build_dataclass
77

88

99
@pytest.mark.parametrize(

tests/test_subscription.py renamed to packages/stompman/test_stompman/test_subscription.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
SubscribeFrame,
2222
UnsubscribeFrame,
2323
)
24-
from tests.conftest import (
24+
from test_stompman.conftest import (
2525
CONNECT_FRAME,
2626
CONNECTED_FRAME,
2727
EnrichedClient,

tests/test_transaction.py renamed to packages/stompman/test_stompman/test_transaction.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
CommitFrame,
1414
SendFrame,
1515
)
16-
from tests.conftest import (
16+
from test_stompman.conftest import (
1717
CONNECT_FRAME,
1818
CONNECTED_FRAME,
1919
EnrichedClient,

0 commit comments

Comments
 (0)