summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--changelogs/fragments/test_module_patch.yml3
-rw-r--r--tests/unit/modules/utils.py3
2 files changed, 6 insertions, 0 deletions
diff --git a/changelogs/fragments/test_module_patch.yml b/changelogs/fragments/test_module_patch.yml
new file mode 100644
index 00000000..557a941a
--- /dev/null
+++ b/changelogs/fragments/test_module_patch.yml
@@ -0,0 +1,3 @@
+---
+trivial:
+ - util.py - Add mock _ANSIBLE_PROFILE to reflect changes to Ansible libs
diff --git a/tests/unit/modules/utils.py b/tests/unit/modules/utils.py
index 6489f13f..e2d17abd 100644
--- a/tests/unit/modules/utils.py
+++ b/tests/unit/modules/utils.py
@@ -20,6 +20,9 @@ def set_module_args(args):
args = json.dumps({"ANSIBLE_MODULE_ARGS": args})
basic._ANSIBLE_ARGS = to_bytes(args)
+ profile = "legacy"
+ basic._ANSIBLE_PROFILE = profile
+
class AnsibleExitJson(Exception):
pass