summaryrefslogtreecommitdiff
path: root/tests/test_commands.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_commands.py')
-rw-r--r--tests/test_commands.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test_commands.py b/tests/test_commands.py
index 2b769be..4020f5e 100644
--- a/tests/test_commands.py
+++ b/tests/test_commands.py
@@ -861,6 +861,8 @@ class TestRedisCommands:
# make sure other attributes are typed correctly
assert isinstance(slowlog[0]["start_time"], int)
assert isinstance(slowlog[0]["duration"], int)
+ assert isinstance(slowlog[0]["client_address"], bytes)
+ assert isinstance(slowlog[0]["client_name"], bytes)
# Mock result if we didn't get slowlog complexity info.
if "complexity" not in slowlog[0]: