summaryrefslogtreecommitdiffstats
path: root/tests/unit/db
diff options
context:
space:
mode:
authorZhongyue Luo <zhongyue.nah@intel.com>2013-05-15 09:57:36 +0800
committerZhongyue Luo <zhongyue.nah@intel.com>2013-05-15 09:58:15 +0800
commit926b3e98d63e0a093ff90c0e215446a33fa69c95 (patch)
tree0f8e19370e67bf39f095d01e1b6cb84992d5053b /tests/unit/db
parente585ef4871a001c3b3393e35017f24fcf44a523e (diff)
downloadoslo-926b3e98d63e0a093ff90c0e215446a33fa69c95.tar.gz
oslo-926b3e98d63e0a093ff90c0e215446a33fa69c95.tar.xz
oslo-926b3e98d63e0a093ff90c0e215446a33fa69c95.zip
Fixes import order nits
Change-Id: I4fdc8eed74dd90d6450864daba7492d5e7266448
Diffstat (limited to 'tests/unit/db')
-rw-r--r--tests/unit/db/sqlalchemy/test_sqlalchemy.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/db/sqlalchemy/test_sqlalchemy.py b/tests/unit/db/sqlalchemy/test_sqlalchemy.py
index efe0264..7cbe31d 100644
--- a/tests/unit/db/sqlalchemy/test_sqlalchemy.py
+++ b/tests/unit/db/sqlalchemy/test_sqlalchemy.py
@@ -19,8 +19,8 @@
"""Unit tests for SQLAlchemy specific code."""
from sqlalchemy import Column, MetaData, Table, UniqueConstraint
-from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy import DateTime, Integer, String
+from sqlalchemy.ext.declarative import declarative_base
from openstack.common.db import exception as db_exc
from openstack.common.db.sqlalchemy import models