summaryrefslogtreecommitdiffstats
path: root/utils/test/testapi/opnfv_testapi/tornado_swagger/handlers.py
diff options
context:
space:
mode:
authorSerena Feng <feng.xiaowei@zte.com.cn>2017-10-30 12:28:31 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-10-30 12:28:31 +0000
commit0e92805f1bfe597334e2a2f4414e460a8e811239 (patch)
treeef100d680932b169a73d6251811d459e8f9515b2 /utils/test/testapi/opnfv_testapi/tornado_swagger/handlers.py
parent0709a0bc668df263465a97adf0bf4e6ba7aa8b4c (diff)
parenta82ee29bc7349bc2f0ed54cfc0ac83e7607cb1cc (diff)
Merge "divide resources into handlers and models"
Diffstat (limited to 'utils/test/testapi/opnfv_testapi/tornado_swagger/handlers.py')
-rw-r--r--utils/test/testapi/opnfv_testapi/tornado_swagger/handlers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/test/testapi/opnfv_testapi/tornado_swagger/handlers.py b/utils/test/testapi/opnfv_testapi/tornado_swagger/handlers.py
index e39a9f639..a04de07f7 100644
--- a/utils/test/testapi/opnfv_testapi/tornado_swagger/handlers.py
+++ b/utils/test/testapi/opnfv_testapi/tornado_swagger/handlers.py
@@ -26,7 +26,7 @@ def swagger_handlers():
settings.docs_settings,
name=settings.API_DOCS_NAME),
tornado.web.URLSpec(
- _path(r'resources.json$'),
+ _path(r'models.json$'),
views.SwaggerResourcesHandler,
settings.docs_settings,
name=settings.RESOURCE_LISTING_NAME),