Use the embedded scenario manager instead of tempest one
While waiting for tempest scenario manager to stabilize its API,
a copy of it has been imported, so make sure to use it and to not
rely on tempest's one (whose API is changing during the stabilization
process, so it may break anytime).
Just one file needs to change its imports.
At the same time, fix the import order for another file.
Change-Id: I29c4784d59151948778cad57b7db56a368ed821d
Luigi Toscano
5 years ago
| 12 | 12 | # License for the specific language governing permissions and limitations |
| 13 | 13 | # under the License. |
| 14 | 14 | |
| 15 | from cinder_tempest_plugin.scenario import manager | |
| 16 | 15 | from tempest.common import utils |
| 17 | 16 | from tempest.lib import decorators |
| 17 | ||
| 18 | from cinder_tempest_plugin.scenario import manager | |
| 18 | 19 | |
| 19 | 20 | |
| 20 | 21 | class SnapshotDataIntegrityTests(manager.ScenarioTest): |