summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Sutton <josephsutton@catalyst.net.nz>2021-11-24 11:53:18 +1300
committerJule Anger <janger@samba.org>2022-07-24 11:42:01 +0200
commit6a4ed078902dcc57ab14f701c88e76ec0ac375e7 (patch)
treeffc129595fb05aa6e2cef42344672e63307129d0
parentb4005403032b0b33ca88d3abcbf085621b32bd5b (diff)
downloadsamba-6a4ed078902dcc57ab14f701c88e76ec0ac375e7.tar.gz
tests/krb5: Remove unused variable
Signed-off-by: Joseph Sutton <josephsutton@catalyst.net.nz> Reviewed-by: Andrew Bartlett <abartlet@samba.org> (cherry picked from commit 57b1b76154d699b9d70ad04fa5e94c4b30f0e4bf)
-rw-r--r--python/samba/tests/krb5/raw_testcase.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/python/samba/tests/krb5/raw_testcase.py b/python/samba/tests/krb5/raw_testcase.py
index 42f2e94f5aa..36a6134e6c9 100644
--- a/python/samba/tests/krb5/raw_testcase.py
+++ b/python/samba/tests/krb5/raw_testcase.py
@@ -2855,7 +2855,6 @@ class RawKerberosTest(TestCaseInTempDir):
expect_etype_info2 = ()
expect_etype_info = False
- unexpect_etype_info = True
expected_aes_type = 0
expected_rc4_type = 0
if kcrypto.Enctype.RC4 in proposed_etypes:
@@ -2868,7 +2867,6 @@ class RawKerberosTest(TestCaseInTempDir):
if etype > expected_aes_type:
expected_aes_type = etype
if etype in (kcrypto.Enctype.RC4,) and error_code != 0:
- unexpect_etype_info = False
if etype > expected_rc4_type:
expected_rc4_type = etype