From 545aa5ce0c01162bea2682cd6d0e7c69a374f7fe Mon Sep 17 00:00:00 2001 From: BernardWez Date: Fri, 10 Nov 2023 18:29:47 +0100 Subject: [PATCH] Fix test --- tests/test_elx/test_tap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_elx/test_tap.py b/tests/test_elx/test_tap.py index 6123b29..cdfd363 100644 --- a/tests/test_elx/test_tap.py +++ b/tests/test_elx/test_tap.py @@ -22,6 +22,6 @@ async def test_tap_process(tap: Tap): """ Test that the tap process can be run. """ - async with tap.process() as process: + async with tap.process(limit=1) as process: # Make sure the tap process is of the right type. assert type(process) == asyncio.subprocess.Process