summaryrefslogtreecommitdiffstats
path: root/testapi/opnfv_testapi/common/check.py
diff options
context:
space:
mode:
authorSerena Feng <feng.xiaowei@zte.com.cn>2017-05-11 10:26:59 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-05-11 10:26:59 +0000
commite4860a96018db9d3282ee2f77cd33843e6adc624 (patch)
treeb4b529125a934b25eb55108aa97860285cbbae37 /testapi/opnfv_testapi/common/check.py
parent229a3eb38d9c59a964d17d98a1e60eb03a75b405 (diff)
parent71a3c218ef53459fca53b0e1cc31d5f726e5b436 (diff)
Merge "correct the import impl of TestAPI"
Diffstat (limited to 'testapi/opnfv_testapi/common/check.py')
-rw-r--r--testapi/opnfv_testapi/common/check.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/testapi/opnfv_testapi/common/check.py b/testapi/opnfv_testapi/common/check.py
index be4b1df..4d9902c 100644
--- a/testapi/opnfv_testapi/common/check.py
+++ b/testapi/opnfv_testapi/common/check.py
@@ -8,9 +8,11 @@
##############################################################################
import functools
-from tornado import web, gen
+from tornado import gen
+from tornado import web
-from opnfv_testapi.common import raises, message
+from opnfv_testapi.common import message
+from opnfv_testapi.common import raises
def authenticate(method):