diff options
Diffstat (limited to 'tests/test_aioregion.py')
-rw-r--r-- | tests/test_aioregion.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/test_aioregion.py b/tests/test_aioregion.py index 72435adf..dde0918b 100644 --- a/tests/test_aioregion.py +++ b/tests/test_aioregion.py @@ -30,7 +30,7 @@ from kvmd.aioregion import AioExclusiveRegion # ===== @pytest.mark.asyncio -async def test_aioregion__one__ok(event_loop: asyncio.AbstractEventLoop) -> None: +async def test_ok__aioregion__one(event_loop: asyncio.AbstractEventLoop) -> None: _ = event_loop region = AioExclusiveRegion(RegionIsBusyError) @@ -48,7 +48,7 @@ async def test_aioregion__one__ok(event_loop: asyncio.AbstractEventLoop) -> None @pytest.mark.asyncio -async def test_aioregion__one__fail(event_loop: asyncio.AbstractEventLoop) -> None: +async def test_fail__aioregion__one(event_loop: asyncio.AbstractEventLoop) -> None: _ = event_loop region = AioExclusiveRegion(RegionIsBusyError) @@ -69,7 +69,7 @@ async def test_aioregion__one__fail(event_loop: asyncio.AbstractEventLoop) -> No # ===== @pytest.mark.asyncio -async def test_aioregion__two__ok(event_loop: asyncio.AbstractEventLoop) -> None: +async def test_ok__aioregion__two(event_loop: asyncio.AbstractEventLoop) -> None: region = AioExclusiveRegion(RegionIsBusyError) async def func1() -> None: @@ -92,7 +92,7 @@ async def test_aioregion__two__ok(event_loop: asyncio.AbstractEventLoop) -> None @pytest.mark.asyncio -async def test_aioregion__two__fail(event_loop: asyncio.AbstractEventLoop) -> None: +async def test_fail__aioregion__two(event_loop: asyncio.AbstractEventLoop) -> None: region = AioExclusiveRegion(RegionIsBusyError) async def func1() -> None: |