File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -496,6 +496,7 @@ def test_delegation(self):
496496 flags = gssdelegflags ,
497497 creds = None ,
498498 mech = SPNEGO ,
499+ channel_bindings = None ,
499500 )
500501 fake_resp .assert_called_with (b"token" )
501502
@@ -522,6 +523,7 @@ def test_principal_override(self):
522523 flags = gssflags ,
523524 creds = b"fake creds" ,
524525 mech = SPNEGO ,
526+ channel_bindings = None ,
525527 )
526528
527529 def test_realm_override (self ):
@@ -538,6 +540,7 @@ def test_realm_override(self):
538540 flags = gssflags ,
539541 creds = None ,
540542 mech = SPNEGO ,
543+ channel_bindings = None ,
541544 )
542545 fake_resp .assert_called_with (b"token" )
543546
@@ -569,6 +572,7 @@ def test_explicit_creds(self):
569572 flags = gssflags ,
570573 creds = b"fake creds" ,
571574 mech = SPNEGO ,
575+ channel_bindings = None ,
572576 )
573577 fake_resp .assert_called_with (b"token" )
574578
@@ -589,6 +593,7 @@ def test_explicit_mech(self):
589593 flags = gssflags ,
590594 creds = None ,
591595 mech = b"fake mech" ,
596+ channel_bindings = None ,
592597 )
593598 fake_resp .assert_called_with (b"token" )
594599
@@ -606,6 +611,7 @@ def test_target_name(self):
606611 flags = gssflags ,
607612 creds = None ,
608613 mech = SPNEGO ,
614+ channel_bindings = None ,
609615 )
610616 fake_resp .assert_called_with (b"token" )
611617
You can’t perform that action at this time.
0 commit comments