Skip to content

Commit fe385e5

Browse files
committed
Fix linter error
1 parent 24d141d commit fe385e5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/test_commands.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,9 @@ def test_acl_dryrun(self, r):
9696
commands=["+set"],
9797
)
9898
assert r.acl_dryrun(username, "set", "key", "value") == b"OK"
99-
assert r.acl_dryrun(username, "get", "key").startswith(b"This user has no permissions to run the")
99+
assert r.acl_dryrun(username, "get", "key").startswith(
100+
b"This user has no permissions to run the"
101+
)
100102

101103
@skip_if_server_version_lt("6.0.0")
102104
@skip_if_redis_enterprise()

0 commit comments

Comments
 (0)