pull/294/head
Andrew Mirsky 2025-08-11 21:40:46 -04:00
rodzic 895672731f
commit b90b53e755
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: A98E67635CDF2C39
1 zmienionych plików z 30 dodań i 30 usunięć

Wyświetl plik

@ -30,7 +30,6 @@ def rsa_keys():
@pytest.fixture
def test_config(rsa_keys):
certfile, keyfile = rsa_keys
with pytest.warns(DeprecationWarning):
yield {
"listeners": {
"default": {"type": "tcp", "bind": "127.0.0.1:1883", "max_connections": 15},
@ -94,6 +93,7 @@ def mock_plugin_manager():
@pytest.fixture
async def broker_fixture(test_config):
with pytest.warns(DeprecationWarning):
broker = Broker(test_config, plugin_namespace="amqtt.test.plugins")
await broker.start()
assert broker.transitions.is_started()