From 703de8f3c0948ab7b2ea7730c1858cfa8cecb4f8 Mon Sep 17 00:00:00 2001 From: beeankha Date: Fri, 23 Aug 2019 08:34:32 -0400 Subject: [PATCH] Edit minor typo --- awx/main/tests/functional/api/test_workflow_node.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/main/tests/functional/api/test_workflow_node.py b/awx/main/tests/functional/api/test_workflow_node.py index cf9b7dfe3b..04b7780815 100644 --- a/awx/main/tests/functional/api/test_workflow_node.py +++ b/awx/main/tests/functional/api/test_workflow_node.py @@ -194,7 +194,7 @@ class TestApprovalNodes(): assert approval.name == 'Approve/Deny Test2' post(reverse('api:workflow_approval_deny', kwargs={'pk': approval.pk}), user=admin_user, expect=204) - # Test that there is an activity stream entry that was created for the "approve" action. + # Test that there is an activity stream entry that was created for the "deny" action. qs = ActivityStream.objects.order_by('-timestamp').first() assert qs.object1 == 'workflow_approval' assert qs.changes == '{"status": ["pending", "failed"]}'