diff options
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): |