Remove unused variables and broken links

Change-Id: Id7d276082329e070fa483c53ee2949f6720f7d17
This commit is contained in:
dongdongpei 2017-08-24 19:24:13 -07:00
parent 90060722a9
commit ccbb1622ad
3 changed files with 0 additions and 9 deletions

View File

@ -27,10 +27,6 @@ from manila.tests.api import fakes
from manila.tests.db import fakes as db_fakes
NS = "{http://docs.openstack.org/compute/api/v1.1}"
ATOMNS = "{http://www.w3.org/2005/Atom}"
class LimiterTest(test.TestCase):
"""Unit tests for the `manila.api.common.limited` method.

View File

@ -27,7 +27,6 @@ from manila import policy
from manila import test
CONF = cfg.CONF
NS = "{http://docs.openstack.org/common/api/v1.0}"
class ExtensionTestCase(test.TestCase):

View File

@ -36,10 +36,6 @@ TEST_LIMITS = [
limits.Limit("PUT", "*", "", 10, limits.PER_MINUTE),
limits.Limit("PUT", "/shares", "^/shares", 5, limits.PER_MINUTE),
]
NS = {
'atom': 'http://www.w3.org/2005/Atom',
'ns': 'http://docs.openstack.org/common/api/v1.0'
}
class BaseLimitTestSuite(test.TestCase):