Skip to content

Commit

Permalink
fix bytes
Browse files Browse the repository at this point in the history
  • Loading branch information
Stanislav Lysikov committed Sep 27, 2024
1 parent f033945 commit 8da5292
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/security/test_auth_ldap.py
Original file line number Diff line number Diff line change
Expand Up @@ -973,10 +973,10 @@ def test__ldap_get_nested_groups(self):
create_default_users(self.appbuilder.session)

user_alice = (
"cn=test,ou=groups,dc=example,dc=org",
b"cn=test,ou=groups,dc=example,dc=org",
{
"member:1.2.840.113556.1.4.1941:": [
"cn=alice,ou=users,dc=example,dc=org"
b"cn=alice,ou=users,dc=example,dc=org"
],
},
)
Expand Down

0 comments on commit 8da5292

Please sign in to comment.