Move xml common code into the common dir
This commit moves tempest.services.compute.xml.common to the proper
location in tempest.common and renames the file to xml_utils.py. This
module was used in every client not just compute so the appropriate
place for this is in the common dir.
Change-Id: I42a8338fd507c1224fa9fd2cdc5c1b0700f7a26a
diff --git a/tempest/tests/test_rest_client.py b/tempest/tests/test_rest_client.py
index 0677aa0..b54b0c2 100644
--- a/tempest/tests/test_rest_client.py
+++ b/tempest/tests/test_rest_client.py
@@ -16,10 +16,10 @@
import json
from tempest.common import rest_client
+from tempest.common import xml_utils as xml
from tempest import config
from tempest import exceptions
from tempest.openstack.common.fixture import mockpatch
-from tempest.services.compute.xml import common as xml
from tempest.tests import base
from tempest.tests import fake_auth_provider
from tempest.tests import fake_config