@@ -127,7 +127,7 @@ def test_create_identity_provider_remote_id(self):
127127 ]
128128 verifylist = [
129129 ('identity_provider_id' , identity_fakes .idp_id ),
130- ('remote_id ' , identity_fakes .idp_remote_ids [:1 ]),
130+ ('remote_ids ' , identity_fakes .idp_remote_ids [:1 ]),
131131 ]
132132 parsed_args = self .check_parser (self .cmd , arglist , verifylist )
133133 columns , data = self .cmd .take_action (parsed_args )
@@ -157,7 +157,7 @@ def test_create_identity_provider_remote_ids_multiple(self):
157157 ]
158158 verifylist = [
159159 ('identity_provider_id' , identity_fakes .idp_id ),
160- ('remote_id ' , identity_fakes .idp_remote_ids ),
160+ ('remote_ids ' , identity_fakes .idp_remote_ids ),
161161 ]
162162 parsed_args = self .check_parser (self .cmd , arglist , verifylist )
163163 columns , data = self .cmd .take_action (parsed_args )
@@ -561,7 +561,7 @@ def prepare(self):
561561 ('description' , new_description ),
562562 ('enable' , False ),
563563 ('disable' , False ),
564- ('remote_id ' , None ),
564+ ('remote_ids ' , None ),
565565 ]
566566 parsed_args = self .check_parser (self .cmd , arglist , verifylist )
567567 self .cmd .take_action (parsed_args )
@@ -597,7 +597,7 @@ def prepare(self):
597597 ('description' , None ),
598598 ('enable' , False ),
599599 ('disable' , True ),
600- ('remote_id ' , identity_fakes .idp_remote_ids ),
600+ ('remote_ids ' , identity_fakes .idp_remote_ids ),
601601 ]
602602 parsed_args = self .check_parser (self .cmd , arglist , verifylist )
603603
@@ -637,7 +637,7 @@ def prepare(self):
637637 ('description' , None ),
638638 ('enable' , True ),
639639 ('disable' , False ),
640- ('remote_id ' , identity_fakes .idp_remote_ids ),
640+ ('remote_ids ' , identity_fakes .idp_remote_ids ),
641641 ]
642642 parsed_args = self .check_parser (self .cmd , arglist , verifylist )
643643
@@ -675,7 +675,7 @@ def prepare(self):
675675 ('description' , None ),
676676 ('enable' , True ),
677677 ('disable' , False ),
678- ('remote_id ' , [self .new_remote_id ]),
678+ ('remote_ids ' , [self .new_remote_id ]),
679679 ]
680680 parsed_args = self .check_parser (self .cmd , arglist , verifylist )
681681
@@ -756,7 +756,7 @@ def prepare(self):
756756 ('identity_provider' , identity_fakes .idp_id ),
757757 ('enable' , False ),
758758 ('disable' , False ),
759- ('remote_id ' , None ),
759+ ('remote_ids ' , None ),
760760 ]
761761 parsed_args = self .check_parser (self .cmd , arglist , verifylist )
762762
@@ -776,7 +776,7 @@ def prepare(self):
776776 ('identity_provider' , identity_fakes .idp_id ),
777777 ('enable' , False ),
778778 ('disable' , False ),
779- ('remote_id ' , None ),
779+ ('remote_ids ' , None ),
780780 ('authorization_ttl' , 60 ),
781781 ]
782782 parsed_args = self .check_parser (self .cmd , arglist , verifylist )
@@ -800,7 +800,7 @@ def prepare(self):
800800 ('identity_provider' , identity_fakes .idp_id ),
801801 ('enable' , False ),
802802 ('disable' , False ),
803- ('remote_id ' , None ),
803+ ('remote_ids ' , None ),
804804 ('authorization_ttl' , 0 ),
805805 ]
806806 parsed_args = self .check_parser (self .cmd , arglist , verifylist )
@@ -816,7 +816,7 @@ def test_identity_provider_set_authttl_negative(self):
816816 ('identity_provider' , identity_fakes .idp_id ),
817817 ('enable' , False ),
818818 ('disable' , False ),
819- ('remote_id ' , None ),
819+ ('remote_ids ' , None ),
820820 ('authorization_ttl' , - 1 ),
821821 ]
822822 parsed_args = self .check_parser (self .cmd , arglist , verifylist )
0 commit comments