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):
496
496
flags = gssdelegflags ,
497
497
creds = None ,
498
498
mech = SPNEGO ,
499
+ channel_bindings = None ,
499
500
)
500
501
fake_resp .assert_called_with (b"token" )
501
502
@@ -522,6 +523,7 @@ def test_principal_override(self):
522
523
flags = gssflags ,
523
524
creds = b"fake creds" ,
524
525
mech = SPNEGO ,
526
+ channel_bindings = None ,
525
527
)
526
528
527
529
def test_realm_override (self ):
@@ -538,6 +540,7 @@ def test_realm_override(self):
538
540
flags = gssflags ,
539
541
creds = None ,
540
542
mech = SPNEGO ,
543
+ channel_bindings = None ,
541
544
)
542
545
fake_resp .assert_called_with (b"token" )
543
546
@@ -569,6 +572,7 @@ def test_explicit_creds(self):
569
572
flags = gssflags ,
570
573
creds = b"fake creds" ,
571
574
mech = SPNEGO ,
575
+ channel_bindings = None ,
572
576
)
573
577
fake_resp .assert_called_with (b"token" )
574
578
@@ -589,6 +593,7 @@ def test_explicit_mech(self):
589
593
flags = gssflags ,
590
594
creds = None ,
591
595
mech = b"fake mech" ,
596
+ channel_bindings = None ,
592
597
)
593
598
fake_resp .assert_called_with (b"token" )
594
599
@@ -606,6 +611,7 @@ def test_target_name(self):
606
611
flags = gssflags ,
607
612
creds = None ,
608
613
mech = SPNEGO ,
614
+ channel_bindings = None ,
609
615
)
610
616
fake_resp .assert_called_with (b"token" )
611
617
You can’t perform that action at this time.
0 commit comments