Set missing attribute self.server in _create_and_attach utility
Modifies _create_and_attach utility method so that it sets self.server
attribute. The test, test_attach_detach_volume was failing because it
expected the attribute to be set but it was not.
Fixes: bug #1214219
Change-Id: I88222cdf264e938f492058ab2d476406074aea40
diff --git a/tempest/api/compute/volumes/test_attach_volume.py b/tempest/api/compute/volumes/test_attach_volume.py
index a3b051e..b67a5e0 100644
--- a/tempest/api/compute/volumes/test_attach_volume.py
+++ b/tempest/api/compute/volumes/test_attach_volume.py
@@ -55,6 +55,7 @@
# Start a server and wait for it to become ready
resp, server = self.create_server(wait_until='ACTIVE',
adminPass='password')
+ self.server = server
# Record addresses so that we can ssh later
resp, server['addresses'] = \