summaryrefslogtreecommitdiff
path: root/tests/test_asyncio/test_pipeline.py
diff options
context:
space:
mode:
authorUtkarsh Gupta <utkarshgupta137@gmail.com>2022-05-30 20:05:19 +0530
committerGitHub <noreply@github.com>2022-05-30 17:35:19 +0300
commitc54dfa49dda6a7b3389dc230726293af3ffc68a3 (patch)
treefd972a79a8bef1b29829426c86a7386abb44ba73 /tests/test_asyncio/test_pipeline.py
parentf704281cf4c1f735c06a13946fcea42fa939e3a5 (diff)
downloadredis-py-c54dfa49dda6a7b3389dc230726293af3ffc68a3.tar.gz
update black to 22.3.0 (#2171)
Diffstat (limited to 'tests/test_asyncio/test_pipeline.py')
-rw-r--r--tests/test_asyncio/test_pipeline.py5
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: