Py3: fix an error when adding two `dict_items`
Fix the following error "TypeError: unsupported operand type(s) for +:
'dict_items' and 'dict_items'" on Python3.
This is the only occurence of this pattern, as far as I can tell.
Change-Id: I3d926c56648f8ae0b28abfd8ca1806134ba3df41
diff --git a/tempest/lib/services/compute/servers_client.py b/tempest/lib/services/compute/servers_client.py
index 0472eda..8e4eca1 100644
--- a/tempest/lib/services/compute/servers_client.py
+++ b/tempest/lib/services/compute/servers_client.py
@@ -61,7 +61,7 @@
post_body = {'server': body}
if hints:
- post_body = dict(post_body.items() + hints.items())
+ post_body.update(hints)
post_body = json.dumps(post_body)
resp, body = self.post('servers', post_body)