Merge "Increase verbosity in test_create_update_get_delete_alarm" into mcp/antelope
diff --git a/telemetry_tempest_plugin/aodh/api/test_alarming_api.py b/telemetry_tempest_plugin/aodh/api/test_alarming_api.py
index 67ad316..f8613c7 100644
--- a/telemetry_tempest_plugin/aodh/api/test_alarming_api.py
+++ b/telemetry_tempest_plugin/aodh/api/test_alarming_api.py
@@ -87,10 +87,10 @@
# Get history for the alarm and verify the same
body = self.alarming_client.show_alarm_history(alarm_id)
- self.assertEqual("rule change", body[0]['type'])
- self.assertIn(alarm_name_updated, body[0]['detail'])
- self.assertEqual("creation", body[1]['type'])
- self.assertIn(alarm_name, body[1]['detail'])
+ self.assertEqual("rule change", body[0]['type'], body)
+ self.assertIn(alarm_name_updated, body[0]['detail'], body)
+ self.assertEqual("creation", body[1]['type'], body)
+ self.assertIn(alarm_name, body[1]['detail'], body)
# Delete alarm and verify if deleted
self.alarming_client.delete_alarm(alarm_id)