summaryrefslogtreecommitdiffstats
path: root/tests/test_import_legacy.py
diff options
context:
space:
mode:
authorZhongyue Luo <lzyeval@gmail.com>2012-07-03 00:11:57 +0800
committerZhongyue Luo <lzyeval@gmail.com>2012-07-03 00:21:39 +0800
commita7417e26d8b7cdf3decc7ee70a736789bafc3a83 (patch)
tree7b4cd62628e7b6b89060da55a395cbcfd0288886 /tests/test_import_legacy.py
parentb45c252bca75d55fc720f354c48f5084c2528582 (diff)
downloadkeystone-a7417e26d8b7cdf3decc7ee70a736789bafc3a83.tar.gz
keystone-a7417e26d8b7cdf3decc7ee70a736789bafc3a83.tar.xz
keystone-a7417e26d8b7cdf3decc7ee70a736789bafc3a83.zip
Reorder test imports by full import path
Fixes bug #1020182 Reorder imports of modules in keystone/tests. Change-Id: I2ff61dd3d9486281b4a2a889e4dc8b9105c87d49
Diffstat (limited to 'tests/test_import_legacy.py')
-rw-r--r--tests/test_import_legacy.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_import_legacy.py b/tests/test_import_legacy.py
index 5c6ee61d..84c4bb6b 100644
--- a/tests/test_import_legacy.py
+++ b/tests/test_import_legacy.py
@@ -19,12 +19,12 @@ import os
import sqlite3
#import sqlalchemy
-from keystone import config
-from keystone import test
+from keystone.catalog.backends import templated as catalog_templated
from keystone.common.sql import legacy
from keystone.common.sql import util as sql_util
+from keystone import config
from keystone.identity.backends import sql as identity_sql
-from keystone.catalog.backends import templated as catalog_templated
+from keystone import test
CONF = config.CONF