diff --git a/changelogs/fragments/ansible-test-azure-plugin-help-cleanup.yml b/changelogs/fragments/ansible-test-azure-plugin-help-cleanup.yml new file mode 100644 index 00000000000..43e0a4962d7 --- /dev/null +++ b/changelogs/fragments/ansible-test-azure-plugin-help-cleanup.yml @@ -0,0 +1,2 @@ +minor_changes: + - ansible-test - Updated the help message for failed tests in the ``azure`` test plugin. diff --git a/test/lib/ansible_test/_internal/commands/integration/cloud/azure.py b/test/lib/ansible_test/_internal/commands/integration/cloud/azure.py index 59d78c67537..408410001fa 100644 --- a/test/lib/ansible_test/_internal/commands/integration/cloud/azure.py +++ b/test/lib/ansible_test/_internal/commands/integration/cloud/azure.py @@ -163,8 +163,7 @@ class AzureCloudEnvironment(CloudEnvironment): def on_failure(self, target, tries): # type: (IntegrationTarget, int) -> None """Callback to run when an integration target fails.""" if not tries and self.managed: - display.notice('If %s failed due to permissions, the test policy may need to be updated. ' - 'For help, consult @mattclay or @gundalow on GitHub or #ansible-devel on IRC.' % target.name) + display.notice('If %s failed due to permissions, the test policy may need to be updated.' % target.name) def get_config(config_path): # type: (str) -> t.Dict[str, str]