diff --git a/README.md b/README.md index c6414933..52611038 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ The above code connects to localhost on port 6379, sets a value in Redis, and re #### RESP3 Support -To enable support for RESP3, ensure you have at least version 5.0 of the client, and change your connection object to include *protocol=3* +To enable support for RESP3 change your connection object to include *protocol=3* ``` python >>> import valkey diff --git a/tasks.py b/tasks.py index 1175bcdd..b3b89f69 100644 --- a/tasks.py +++ b/tasks.py @@ -46,7 +46,7 @@ def tests(c, uvloop=False, protocol=2): """Run the valkey-py test suite against the current python, with and without hiredis. """ - print("Starting Redis tests") + print("Starting Valkey tests") standalone_tests(c, uvloop=uvloop, protocol=protocol) cluster_tests(c, uvloop=uvloop, protocol=protocol)