diff options
author | Stephen Finucane <stephenfin@redhat.com> | 2023-03-23 12:15:08 +0000 |
---|---|---|
committer | Takashi Kajinami <tkajinam@redhat.com> | 2023-03-25 12:02:27 +0900 |
commit | 43a5f3984e433ec28616cfe98cb060d9ff51af58 (patch) | |
tree | 8c10a86209cf83e07e75846b7880268d2c3473c1 /heat/tests/engine/service | |
parent | 586e5b0a75167b20882728f642c8a81195afb71d (diff) | |
download | heat-43a5f3984e433ec28616cfe98cb060d9ff51af58.tar.gz |
db: Remove layer of indirection
We don't have another ORM to content with here. Simplify
'heat.db.sqlalchemy' to 'heat.db'.
Signed-off-by: Stephen Finucane <stephenfin@redhat.com>
Change-Id: Id1db6c0ff126859f436c6c9b1187c250f38ebb62
Diffstat (limited to 'heat/tests/engine/service')
-rw-r--r-- | heat/tests/engine/service/test_software_config.py | 2 | ||||
-rw-r--r-- | heat/tests/engine/service/test_stack_update.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/heat/tests/engine/service/test_software_config.py b/heat/tests/engine/service/test_software_config.py index ecd7bef62..9aba366a5 100644 --- a/heat/tests/engine/service/test_software_config.py +++ b/heat/tests/engine/service/test_software_config.py @@ -22,7 +22,7 @@ from oslo_utils import timeutils from heat.common import crypt from heat.common import exception from heat.common import template_format -from heat.db.sqlalchemy import api as db_api +from heat.db import api as db_api from heat.engine.clients.os import swift from heat.engine.clients.os import zaqar from heat.engine import service diff --git a/heat/tests/engine/service/test_stack_update.py b/heat/tests/engine/service/test_stack_update.py index f1df832af..0712e888f 100644 --- a/heat/tests/engine/service/test_stack_update.py +++ b/heat/tests/engine/service/test_stack_update.py @@ -24,7 +24,7 @@ from heat.common import exception from heat.common import messaging from heat.common import service_utils from heat.common import template_format -from heat.db.sqlalchemy import api as db_api +from heat.db import api as db_api from heat.engine.clients.os import glance from heat.engine.clients.os import nova from heat.engine.clients.os import swift |