TrivialFix: Remove cfg import unused

This patch removes cfg import unused in
tempest/api/object_storage/test_container_quotas.py
and tempest/api/object_storage/test_object_temp_url.py

Change-Id: If323a680124e14e3a1e82768ff051c0b588db199
This commit is contained in:
Cao Xuan Hoang 2016-08-25 09:45:44 +07:00
parent d55489448d
commit 4fd86aa725
2 changed files with 0 additions and 5 deletions

View File

@ -15,11 +15,9 @@
from tempest.api.object_storage import base
from tempest.common.utils import data_utils
from tempest import config
from tempest.lib import exceptions as lib_exc
from tempest import test
CONF = config.CONF
QUOTA_BYTES = 10
QUOTA_COUNT = 3

View File

@ -20,11 +20,8 @@ from six.moves.urllib import parse as urlparse
from tempest.api.object_storage import base
from tempest.common.utils import data_utils
from tempest import config
from tempest import test
CONF = config.CONF
class ObjectTempUrlTest(base.BaseObjectTest):