@@ -481,7 +481,6 @@ def test_user_delete_no_options(self):
481481 ]
482482 parsed_args = self .check_parser (self .cmd , arglist , verifylist )
483483
484- # DisplayCommandBase.take_action() returns two tuples
485484 self .cmd .take_action (parsed_args )
486485
487486 self .users_mock .delete .assert_called_with (
@@ -746,7 +745,6 @@ def test_user_set_name(self):
746745 ]
747746 parsed_args = self .check_parser (self .cmd , arglist , verifylist )
748747
749- # DisplayCommandBase.take_action() returns two tuples
750748 self .cmd .take_action (parsed_args )
751749
752750 # Set expected values
@@ -778,7 +776,6 @@ def test_user_set_password(self):
778776 ]
779777 parsed_args = self .check_parser (self .cmd , arglist , verifylist )
780778
781- # DisplayCommandBase.take_action() returns two tuples
782779 self .cmd .take_action (parsed_args )
783780
784781 # Set expected values
@@ -810,7 +807,6 @@ def test_user_set_password_prompt(self):
810807 ]
811808 parsed_args = self .check_parser (self .cmd , arglist , verifylist )
812809
813- # DisplayCommandBase.take_action() returns two tuples
814810 mocker = mock .Mock ()
815811 mocker .return_value = 'abc123'
816812 with mock .patch ("openstackclient.common.utils.get_password" , mocker ):
@@ -844,7 +840,6 @@ def test_user_set_email(self):
844840 ]
845841 parsed_args = self .check_parser (self .cmd , arglist , verifylist )
846842
847- # DisplayCommandBase.take_action() returns two tuples
848843 self .cmd .take_action (parsed_args )
849844
850845 # Set expected values
@@ -875,7 +870,6 @@ def test_user_set_project(self):
875870 ]
876871 parsed_args = self .check_parser (self .cmd , arglist , verifylist )
877872
878- # DisplayCommandBase.take_action() returns two tuples
879873 self .cmd .take_action (parsed_args )
880874
881875 # Set expected values
@@ -908,7 +902,6 @@ def test_user_set_project_domain(self):
908902 ]
909903 parsed_args = self .check_parser (self .cmd , arglist , verifylist )
910904
911- # DisplayCommandBase.take_action() returns two tuples
912905 self .cmd .take_action (parsed_args )
913906
914907 # Set expected values
@@ -939,7 +932,6 @@ def test_user_set_enable(self):
939932 ]
940933 parsed_args = self .check_parser (self .cmd , arglist , verifylist )
941934
942- # DisplayCommandBase.take_action() returns two tuples
943935 self .cmd .take_action (parsed_args )
944936
945937 # Set expected values
@@ -969,7 +961,6 @@ def test_user_set_disable(self):
969961 ]
970962 parsed_args = self .check_parser (self .cmd , arglist , verifylist )
971963
972- # DisplayCommandBase.take_action() returns two tuples
973964 self .cmd .take_action (parsed_args )
974965
975966 # Set expected values
0 commit comments