diff --git a/openstackclient/tests/compute/v2/test_flavor.py b/openstackclient/tests/compute/v2/test_flavor.py index 60356efa8b..3a59020c49 100644 --- a/openstackclient/tests/compute/v2/test_flavor.py +++ b/openstackclient/tests/compute/v2/test_flavor.py @@ -173,10 +173,10 @@ class TestFlavorList(TestFlavor): def test_flavor_list_private_flavors(self): arglist = [ '--private', - ] + ] verifylist = [ ('public', False), - ] + ] parsed_args = self.check_parser(self.cmd, arglist, verifylist) @@ -200,10 +200,10 @@ class TestFlavorList(TestFlavor): def test_flavor_list_public_flavors(self): arglist = [ '--public', - ] + ] verifylist = [ ('public', True), - ] + ] parsed_args = self.check_parser(self.cmd, arglist, verifylist)