diff options
author | Utkarsh Gupta <utkarshgupta137@gmail.com> | 2022-05-30 20:05:19 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-30 17:35:19 +0300 |
commit | c54dfa49dda6a7b3389dc230726293af3ffc68a3 (patch) | |
tree | fd972a79a8bef1b29829426c86a7386abb44ba73 /tests/test_command_parser.py | |
parent | f704281cf4c1f735c06a13946fcea42fa939e3a5 (diff) | |
download | redis-py-c54dfa49dda6a7b3389dc230726293af3ffc68a3.tar.gz |
update black to 22.3.0 (#2171)
Diffstat (limited to 'tests/test_command_parser.py')
-rw-r--r-- | tests/test_command_parser.py | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/tests/test_command_parser.py b/tests/test_command_parser.py index 1457e27..134909f 100644 --- a/tests/test_command_parser.py +++ b/tests/test_command_parser.py @@ -75,13 +75,7 @@ class TestCommandsParser: @skip_if_server_version_lt("7.0.0") def test_get_eval_keys_with_0_keys(self, r): commands_parser = CommandsParser(r) - args = [ - "EVAL", - "return {ARGV[1],ARGV[2]}", - 0, - "key1", - "key2", - ] + args = ["EVAL", "return {ARGV[1],ARGV[2]}", 0, "key1", "key2"] assert commands_parser.get_keys(r, *args) == [] def test_get_pubsub_keys(self, r): |