From 147709b95acc1cb346d8e425b41c283cd0d463db Mon Sep 17 00:00:00 2001 From: Skrynnik Daniil Date: Tue, 21 Jan 2025 15:38:25 +0300 Subject: [PATCH] ADCM-6280: small rename refactor --- .../{test_interaction_with_service.py => test_service.py} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename tests/integration/examples/{test_interaction_with_service.py => test_service.py} (96%) diff --git a/tests/integration/examples/test_interaction_with_service.py b/tests/integration/examples/test_service.py similarity index 96% rename from tests/integration/examples/test_interaction_with_service.py rename to tests/integration/examples/test_service.py index 62cb5dd..4238e2f 100644 --- a/tests/integration/examples/test_interaction_with_service.py +++ b/tests/integration/examples/test_service.py @@ -7,7 +7,7 @@ pytestmark = [pytest.mark.asyncio] -async def test_interaction_with_service(example_cluster: Cluster, three_hosts: list[Host]) -> None: +async def test_service(example_cluster: Cluster, three_hosts: list[Host]) -> None: cluster = example_cluster host_1, host_2, host_3 = sorted(three_hosts, key=lambda host: host.name)