summaryrefslogtreecommitdiff
path: root/tests/test_asyncio/test_pipeline.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_asyncio/test_pipeline.py')
-rw-r--r--tests/test_asyncio/test_pipeline.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/test_asyncio/test_pipeline.py b/tests/test_asyncio/test_pipeline.py
index d613f49..3df57eb 100644
--- a/tests/test_asyncio/test_pipeline.py
+++ b/tests/test_asyncio/test_pipeline.py
@@ -124,7 +124,7 @@ class TestPipeline:
with pytest.raises(redis.ResponseError) as ex:
await pipe.execute()
assert str(ex.value).startswith(
- "Command # 3 (LPUSH c 3) of " "pipeline caused error: "
+ "Command # 3 (LPUSH c 3) of pipeline caused error: "
)
# make sure the pipe was restored to a working state
@@ -169,7 +169,7 @@ class TestPipeline:
await pipe.execute()
assert str(ex.value).startswith(
- "Command # 2 (ZREM b) of " "pipeline caused error: "
+ "Command # 2 (ZREM b) of pipeline caused error: "
)
# make sure the pipe was restored to a working state
@@ -186,7 +186,7 @@ class TestPipeline:
await pipe.execute()
assert str(ex.value).startswith(
- "Command # 2 (ZREM b) of " "pipeline caused error: "
+ "Command # 2 (ZREM b) of pipeline caused error: "
)
# make sure the pipe was restored to a working state
@@ -333,7 +333,7 @@ class TestPipeline:
await pipe.execute()
assert str(ex.value).startswith(
- "Command # 1 (LLEN a) of " "pipeline caused error: "
+ "Command # 1 (LLEN a) of pipeline caused error: "
)
assert await r.get("a") == b"1"