From d573a9a3466867a0b6baaaada749cfdef6d5d4e3 Mon Sep 17 00:00:00 2001 From: John Hill Date: Wed, 28 Nov 2018 15:37:30 -0500 Subject: [PATCH] Small update to the node order to reflect workflow changes --- awx/ui/test/e2e/tests/test-templates-list-actions.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/awx/ui/test/e2e/tests/test-templates-list-actions.js b/awx/ui/test/e2e/tests/test-templates-list-actions.js index fbebe75d94..d1e727e2b8 100644 --- a/awx/ui/test/e2e/tests/test-templates-list-actions.js +++ b/awx/ui/test/e2e/tests/test-templates-list-actions.js @@ -183,9 +183,9 @@ module.exports = { }); checkNodeText('#node-1 text', 'START'); - checkNodeText('#node-2 text', data.project.name); - checkNodeText('#node-3 text', data.template.name); - checkNodeText('#node-4 text', data.source.name); + checkNodeText('#node-3 text', data.project.name); + checkNodeText('#node-4 text', data.template.name); + checkNodeText('#node-2 text', data.source.name); templates.expect.element('@save').visible; templates.expect.element('@save').enabled;