Fix use of kwargs instead of **kwargs
This but did not show well because it is used inside a handler that
ignores and logs the exception. But the domain update call fails.
Closes-Bug: #1375415
Change-Id: I16f01b6c2b6cc71ad60f42f4c875cbb85d2e016b
diff --git a/tempest/api/identity/base.py b/tempest/api/identity/base.py
index a225f12..1e4973b 100644
--- a/tempest/api/identity/base.py
+++ b/tempest/api/identity/base.py
@@ -202,7 +202,7 @@
def _try_wrapper(func, item, **kwargs):
try:
if kwargs:
- func(item['id'], kwargs)
+ func(item['id'], **kwargs)
else:
func(item['id'])
except exceptions.NotFound: