summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorJoseph Sutton <josephsutton@catalyst.net.nz>2023-04-27 16:18:32 +1200
committerAndrew Bartlett <abartlet@samba.org>2023-05-05 02:54:31 +0000
commit9d84f3384e6605e2c48a3ece0b0b50a751f73295 (patch)
tree14f124121e7cb42b546be08c46376f4937810444 /python
parent0a7cbe1e953084ef004dffcadcf8436026604820 (diff)
downloadsamba-9d84f3384e6605e2c48a3ece0b0b50a751f73295.tar.gz
tests/krb5: Rename ‘objectclass’ to use correct case
This means that tests can now specify values for ‘objectClass’ in additional_details which override the default value. Signed-off-by: Joseph Sutton <josephsutton@catalyst.net.nz> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'python')
-rw-r--r--python/samba/tests/krb5/kdc_base_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/samba/tests/krb5/kdc_base_test.py b/python/samba/tests/krb5/kdc_base_test.py
index cc7511cdc3c..abb577fa968 100644
--- a/python/samba/tests/krb5/kdc_base_test.py
+++ b/python/samba/tests/krb5/kdc_base_test.py
@@ -807,7 +807,7 @@ class KDCBaseTest(RawKerberosTest):
details = {
"dn": dn,
- "objectclass": object_class,
+ "objectClass": object_class,
"sAMAccountName": account_name,
"userAccountControl": str(account_control),
"unicodePwd": utf16pw}