diff options
Diffstat (limited to 'tests/test_asyncio/test_pipeline.py')
-rw-r--r-- | tests/test_asyncio/test_pipeline.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/tests/test_asyncio/test_pipeline.py b/tests/test_asyncio/test_pipeline.py index 5bb1a8a..50a1051 100644 --- a/tests/test_asyncio/test_pipeline.py +++ b/tests/test_asyncio/test_pipeline.py @@ -37,10 +37,7 @@ class TestPipeline: async def test_pipeline_memoryview(self, r): async with r.pipeline() as pipe: (pipe.set("a", memoryview(b"a1")).get("a")) - assert await pipe.execute() == [ - True, - b"a1", - ] + assert await pipe.execute() == [True, b"a1"] async def test_pipeline_length(self, r): async with r.pipeline() as pipe: |