Skip to content

Commit

Permalink
Fix linter error
Browse files Browse the repository at this point in the history
  • Loading branch information
dogukanteber committed Feb 15, 2022
1 parent 24d141d commit fe385e5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,9 @@ def test_acl_dryrun(self, r):
commands=["+set"],
)
assert r.acl_dryrun(username, "set", "key", "value") == b"OK"
assert r.acl_dryrun(username, "get", "key").startswith(b"This user has no permissions to run the")
assert r.acl_dryrun(username, "get", "key").startswith(
b"This user has no permissions to run the"
)

@skip_if_server_version_lt("6.0.0")
@skip_if_redis_enterprise()
Expand Down

0 comments on commit fe385e5

Please sign in to comment.