Rename data_processing client
The client module name of data_processing was just 'client', but
the other service clients contain their service names.
So the one of data_processing was different and inconsistent.
This patch renames the module name to data_processing_client.
Change-Id: Iefd04a5e22ea3943ef368fb8d27a0a4a28a75f8b
diff --git a/tempest/clients.py b/tempest/clients.py
index 1836173..6c2215c 100644
--- a/tempest/clients.py
+++ b/tempest/clients.py
@@ -64,7 +64,8 @@
TenantUsagesClientJSON
from tempest.services.compute.json.volumes_extensions_client import \
VolumesExtensionsClientJSON
-from tempest.services.data_processing.v1_1.client import DataProcessingClient
+from tempest.services.data_processing.v1_1.data_processing_client import \
+ DataProcessingClient
from tempest.services.database.json.flavors_client import \
DatabaseFlavorsClientJSON
from tempest.services.database.json.limits_client import \
diff --git a/tempest/services/data_processing/v1_1/client.py b/tempest/services/data_processing/v1_1/data_processing_client.py
similarity index 100%
rename from tempest/services/data_processing/v1_1/client.py
rename to tempest/services/data_processing/v1_1/data_processing_client.py