diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2019-06-21 12:07:14 -0400 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2019-06-21 12:07:14 -0400 |
commit | 37afc45c01242e99baf5264692682c076c3c0052 (patch) | |
tree | 7d080e9df937ed7c7f129d7806d2e0b7304e7df8 /tests/test_gssapi.py | |
parent | ecae381a4840695f8e0e90b2d92c2da042fe780d (diff) | |
parent | 467079cdfa036b346cb4dddfc1cac2a440430a9b (diff) |
Merge branch 'master' into 1311-int
Diffstat (limited to 'tests/test_gssapi.py')
-rw-r--r-- | tests/test_gssapi.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/test_gssapi.py b/tests/test_gssapi.py index 8e6ec37a..30ffb56d 100644 --- a/tests/test_gssapi.py +++ b/tests/test_gssapi.py @@ -31,12 +31,14 @@ from .util import needs_gssapi, KerberosTestCase, update_env class GSSAPITest(KerberosTestCase): def setUp(self): super(GSSAPITest, self).setUp() + # TODO: these vars should all come from os.environ or whatever the + # approved pytest method is for runtime-configuring test data. self.krb5_mech = "1.2.840.113554.1.2.2" self.targ_name = self.realm.hostname self.server_mode = False update_env(self, self.realm.env) - def test_1_pyasn1(self): + def test_pyasn1(self): """ Test the used methods of pyasn1. """ |