mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-05 10:13:09 +00:00
circonus_annotation: reason becomes a string
This commit is contained in:
committed by
Toshio Kuratomi
parent
572ab3987a
commit
c6efb81707
@@ -2,6 +2,7 @@
|
||||
|
||||
import io
|
||||
import json
|
||||
import re
|
||||
import uuid
|
||||
from urllib3.response import HTTPResponse
|
||||
|
||||
@@ -170,5 +171,5 @@ class TestCirconusAnnotation(unittest.TestCase):
|
||||
with self.assertRaises(AnsibleFailJson) as result:
|
||||
self.module.main()
|
||||
self.assertTrue(result.exception.args[0]['failed'])
|
||||
self.assertEqual(result.exception.args[0]['reason'].response.status_code, 403)
|
||||
self.assertTrue(re.match(r'\b403\b', result.exception.args[0]['reason']))
|
||||
self.assertEqual(send.call_count, 1)
|
||||
|
||||
Reference in New Issue
Block a user