We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7cec5e0 commit 9ad0ad1Copy full SHA for 9ad0ad1
gssapi/tests/test_high_level.py
@@ -651,7 +651,8 @@ def test_complete_on_partially_completed(self):
651
def test_initiate_accept_steps(self):
652
client_ctx, server_ctx = self._create_completed_contexts()
653
654
- server_ctx.lifetime.should_be_at_most(400)
+ # KDC may allow for clockskew by increasing acceptor context lifetime
655
+ server_ctx.lifetime.should_be_at_most(400 + 300)
656
server_ctx.initiator_name.should_be(client_ctx.initiator_name)
657
server_ctx.mech.should_be_a(gb.OID)
658
server_ctx.actual_flags.should_be_a(gb.IntEnumFlagSet)
0 commit comments