Revert unit tests for quota commands
quota set and quota show command have been fixed by [1] [2], now can revert the unit test as well [1] https://review.openstack.org/435574 [2] https://review.openstack.org/435735 Change-Id: I3d592df6ea4e96770dac4dba91819b5c4bcb0561
This commit is contained in:
parent
c8435f2d5a
commit
ef2a8f4d11
@ -13,8 +13,6 @@
|
||||
import copy
|
||||
import mock
|
||||
|
||||
from openstack.network.v2 import quota as _quota
|
||||
|
||||
from openstackclient.common import quota
|
||||
from openstackclient.tests.unit.compute.v2 import fakes as compute_fakes
|
||||
from openstackclient.tests.unit import fakes
|
||||
@ -284,11 +282,6 @@ class TestQuotaSet(TestQuota):
|
||||
]
|
||||
parsed_args = self.check_parser(self.cmd, arglist, verifylist)
|
||||
|
||||
# TODO(huanxuan): Remove this if condition once the fixed
|
||||
# SDK Quota class is the minimum required version.
|
||||
# This is expected to be SDK release 0.9.13
|
||||
if not hasattr(_quota.Quota, 'allow_get'):
|
||||
# Just run this when sdk <= 0.9.10
|
||||
result = self.cmd.take_action(parsed_args)
|
||||
kwargs = {
|
||||
'subnet': network_fakes.QUOTA['subnet'],
|
||||
@ -483,11 +476,6 @@ class TestQuotaShow(TestQuota):
|
||||
|
||||
parsed_args = self.check_parser(self.cmd, arglist, verifylist)
|
||||
|
||||
# TODO(huanxuan): Remove this if condition once the fixed
|
||||
# SDK QuotaDefault class is the minimum required version.
|
||||
# This is expected to be SDK release 0.9.13
|
||||
if not hasattr(_quota.QuotaDefault, 'project'):
|
||||
# Just run this when sdk <= 0.9.10
|
||||
self.cmd.take_action(parsed_args)
|
||||
|
||||
self.quotas_mock.defaults.assert_called_once_with(
|
||||
|
Loading…
Reference in New Issue
Block a user