Changed imports for remote client models to point to correct location

Tests using the compute winrm code were failing due to imports of
the DirectoryDetails and FileDetails pointing to the old location
in opencafe. Updated these imports to point to the correct location
in cloudcafe.

- updated import path
- reordered imports to follow alphabetical order guidelines

Change-Id: Ida97b19c967e9e6cf066670a159a6748211a4b13
This commit is contained in:
Anna Eilering
2015-05-19 10:46:28 -05:00
parent 9df421b286
commit 982ed7b62b

View File

@@ -20,17 +20,16 @@ import re
from IPy import IP
from cafe.engine.winrm.client import WinRMClient
from cafe.common.reporting import cclogging
from cafe.engine.clients.remote_instance.models.dir_details \
import DirectoryDetails
from cafe.engine.clients.remote_instance.models.file_details \
import FileDetails
from cloudcafe.compute.common.clients.ping import PingClient
from cloudcafe.compute.common.clients.remote_instance.base_client import \
RemoteInstanceClient
from cloudcafe.compute.common.exceptions import WinRMConnectionException, \
InvalidAddressFormat
from cloudcafe.compute.common.models.dir_details \
import DirectoryDetails
from cloudcafe.compute.common.models.file_details \
import FileDetails
class WindowsClient(RemoteInstanceClient):