diff --git a/awx/ui/client/src/notifications/notification-templates-list/list.controller.js b/awx/ui/client/src/notifications/notification-templates-list/list.controller.js
index 83ef89fa03..fb1004cb27 100644
--- a/awx/ui/client/src/notifications/notification-templates-list/list.controller.js
+++ b/awx/ui/client/src/notifications/notification-templates-list/list.controller.js
@@ -155,13 +155,13 @@ export default
Rest.post({})
.then(function () {
ngToast.success({
- content: ` Test Notification Success: ${name} `,
+ content: ` ${name}: Notification Succeeded.`,
});
})
.catch(function () {
ngToast.danger({
- content: 'Test Notification Failure'
+ content: ` ${name}: Notification Failed.`,
});
});
};