From fca92455361ca9e336bcde66ea7df74794adeb1c Mon Sep 17 00:00:00 2001 From: Jim Ladd Date: Tue, 22 Oct 2019 17:45:46 -0700 Subject: [PATCH] Update unit tests --- awx/main/tests/functional/test_notifications.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/main/tests/functional/test_notifications.py b/awx/main/tests/functional/test_notifications.py index 4059d0b9a9..e147445f18 100644 --- a/awx/main/tests/functional/test_notifications.py +++ b/awx/main/tests/functional/test_notifications.py @@ -43,7 +43,7 @@ def test_basic_parameterization(get, post, user, organization): assert 'url' in response.data['notification_configuration'] assert 'headers' in response.data['notification_configuration'] assert 'messages' in response.data - assert response.data['messages'] == {'started': None, 'success': None, 'error': None} + assert response.data['messages'] == {'started': None, 'success': None, 'error': None, 'workflow_approval': None} @pytest.mark.django_db