diff options
author | David Gilman <dgilman@aidentified.com> | 2022-12-14 04:18:41 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-14 11:18:41 +0200 |
commit | 3fb65de645bf4dd1beb8e893bdaa2c4766bbd1fa (patch) | |
tree | d5074882a70d502c91122f252788f27f1670901e /tests/test_asyncio/test_pipeline.py | |
parent | 6487f9555ba2d08083a081df9b65b642427361fa (diff) | |
download | redis-py-3fb65de645bf4dd1beb8e893bdaa2c4766bbd1fa.tar.gz |
Combine auto-concatenated strings (#2482)
Diffstat (limited to 'tests/test_asyncio/test_pipeline.py')
-rw-r--r-- | tests/test_asyncio/test_pipeline.py | 8 |
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" |