From 939b8e81be9da7f547e75c19a9d05d0d590276c4 Mon Sep 17 00:00:00 2001 From: zhurong Date: Mon, 10 Apr 2017 12:46:17 +0800 Subject: [PATCH] Correct the unit test name Change-Id: I3c06b5c34aa1e56b27601e7c0d3074308617bb0e --- muranoclient/tests/unit/osc/v1/test_package.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/muranoclient/tests/unit/osc/v1/test_package.py b/muranoclient/tests/unit/osc/v1/test_package.py index f3569143..8b110a0d 100644 --- a/muranoclient/tests/unit/osc/v1/test_package.py +++ b/muranoclient/tests/unit/osc/v1/test_package.py @@ -135,7 +135,7 @@ class TestPackageList(TestPackage): [packages.Package(None, DATA)] utils.get_dict_properties = mock.MagicMock(return_value='') - def test_stack_list_defaults(self): + def test_package_list_defaults(self): arglist = [] parsed_args = self.check_parser(self.cmd, arglist, []) @@ -146,7 +146,7 @@ class TestPackageList(TestPackage): owned=False) self.assertEqual(COLUMNS, columns) - def test_stack_list_with_limit(self): + def test_package_list_with_limit(self): arglist = ['--limit', '10'] parsed_args = self.check_parser(self.cmd, arglist, []) @@ -157,7 +157,7 @@ class TestPackageList(TestPackage): limit=10, owned=False) - def test_stack_list_with_marker(self): + def test_package_list_with_marker(self): arglist = ['--marker', '12345'] parsed_args = self.check_parser(self.cmd, arglist, []) @@ -168,7 +168,7 @@ class TestPackageList(TestPackage): marker='12345', owned=False) - def test_stack_list_with_name(self): + def test_package_list_with_name(self): arglist = ['--name', 'mysql'] parsed_args = self.check_parser(self.cmd, arglist, []) @@ -179,7 +179,7 @@ class TestPackageList(TestPackage): name='mysql', owned=False) - def test_stack_list_with_fqn(self): + def test_package_list_with_fqn(self): arglist = ['--fqn', 'mysql'] parsed_args = self.check_parser(self.cmd, arglist, [])