-
Notifications
You must be signed in to change notification settings - Fork 115
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use sAMAccountName #12814
Use sAMAccountName #12814
Conversation
@@ -127,7 +127,7 @@ def test_positive_refresh_usergroup_with_ad(self, member_group, ad_data): | |||
'attr-firstname': LDAP_ATTR['firstname'], | |||
'attr-lastname': LDAP_ATTR['surname'], | |||
'attr-mail': LDAP_ATTR['mail'], | |||
'account': ad_data['ldap_user_name'], | |||
'account': fr"{ad_data['workgroup']}\{ad_data['ldap_user_name']}", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This made me learn something about formatted and raw strings together @lhellebr :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ack
Let's have a PRT run and we can merge this! |
@@ -127,7 +127,7 @@ def test_positive_refresh_usergroup_with_ad(self, member_group, ad_data): | |||
'attr-firstname': LDAP_ATTR['firstname'], | |||
'attr-lastname': LDAP_ATTR['surname'], | |||
'attr-mail': LDAP_ATTR['mail'], | |||
'account': ad_data['ldap_user_name'], | |||
'account': fr"{ad_data['workgroup']}\{ad_data['ldap_user_name']}", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nitpick comment about flipping the strings :)
'account': fr"{ad_data['workgroup']}\{ad_data['ldap_user_name']}", | |
'account': fr'{ad_data["workgroup"]}\{ad_data["ldap_user_name"]}', |
trigger: test-robottelo |
1 similar comment
trigger: test-robottelo |
trigger: test-robottelo |
1 similar comment
trigger: test-robottelo |
No description provided.