@@ -47,7 +47,6 @@ def test_add_port_no_option(self):
4747 arglist = []
4848 verifylist = []
4949
50- # Missing required args should bail here
5150 self .assertRaises (tests_utils .ParserException , self .check_parser ,
5251 self .cmd , arglist , verifylist )
5352
@@ -88,7 +87,6 @@ def test_add_subnet_no_option(self):
8887 arglist = []
8988 verifylist = []
9089
91- # Missing required args should bail here
9290 self .assertRaises (tests_utils .ParserException , self .check_parser ,
9391 self .cmd , arglist , verifylist )
9492
@@ -154,7 +152,6 @@ def test_create_no_options(self):
154152 arglist = []
155153 verifylist = []
156154
157- # Missing required args should bail here
158155 self .assertRaises (tests_utils .ParserException , self .check_parser ,
159156 self .cmd , arglist , verifylist )
160157
@@ -335,7 +332,6 @@ def test_remove_port_no_option(self):
335332 arglist = []
336333 verifylist = []
337334
338- # Missing required args should bail here
339335 self .assertRaises (tests_utils .ParserException , self .check_parser ,
340336 self .cmd , arglist , verifylist )
341337
@@ -375,7 +371,6 @@ def test_remove_subnet_no_option(self):
375371 arglist = []
376372 verifylist = []
377373
378- # Missing required args should bail here
379374 self .assertRaises (tests_utils .ParserException , self .check_parser ,
380375 self .cmd , arglist , verifylist )
381376
@@ -475,7 +470,6 @@ def test_set_distributed_centralized(self):
475470 ('distributed' , False ),
476471 ]
477472
478- # Missing required args should bail here
479473 self .assertRaises (tests_utils .ParserException , self .check_parser ,
480474 self .cmd , arglist , verifylist )
481475
@@ -534,7 +528,6 @@ def test_set_route_clear_routes(self):
534528 ('clear_routes' , True ),
535529 ]
536530
537- # Argument parse failing should bail here
538531 self .assertRaises (tests_utils .ParserException , self .check_parser ,
539532 self .cmd , arglist , verifylist )
540533
@@ -591,7 +584,6 @@ def test_show_no_options(self):
591584 arglist = []
592585 verifylist = []
593586
594- # Missing required args should bail here
595587 self .assertRaises (tests_utils .ParserException , self .check_parser ,
596588 self .cmd , arglist , verifylist )
597589
0 commit comments