summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Sutton <josephsutton@catalyst.net.nz>2021-10-20 12:39:05 +1300
committerStefan Metzmacher <metze@samba.org>2021-10-26 12:00:28 +0000
commit3a813c6d70e0a6b390f550ec208599ad4f79a661 (patch)
tree08420050f89b71dc86e09a319d24bd9c1f0ff945
parent7fbdc4f0bc4783eac09be6adcda8db986712501f (diff)
downloadsamba-3a813c6d70e0a6b390f550ec208599ad4f79a661.tar.gz
tests/krb5: Decrease length of test account prefix
This allows us more room to test with different account names. BUG: https://bugzilla.samba.org/show_bug.cgi?id=14874 BUG: https://bugzilla.samba.org/show_bug.cgi?id=14881 Signed-off-by: Joseph Sutton <josephsutton@catalyst.net.nz> Reviewed-by: Stefan Metzmacher <metze@samba.org> (cherry picked from commit a5a6296e57cab2b53617d997c37b4e92d4124cc7)
-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 7cd3c5255f2..8f453b464fd 100644
--- a/python/samba/tests/krb5/kdc_base_test.py
+++ b/python/samba/tests/krb5/kdc_base_test.py
@@ -108,7 +108,7 @@ class KDCBaseTest(RawKerberosTest):
# An identifier to ensure created accounts have unique names. Windows
# caches accounts based on usernames, so account names being different
# across test runs avoids previous test runs affecting the results.
- cls.account_base = f'krb5_{secrets.token_hex(5)}_'
+ cls.account_base = f'{secrets.token_hex(4)}_'
cls.account_id = 0
# A set containing DNs of accounts created as part of testing.