From fdedc472d1237bf40219db13bf72efe95331d587 Mon Sep 17 00:00:00 2001 From: Daniel Sami Date: Thu, 18 Oct 2018 15:06:37 -0400 Subject: [PATCH] lint fix --- awx/ui/test/e2e/tests/test-workflow-visualizer.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/awx/ui/test/e2e/tests/test-workflow-visualizer.js b/awx/ui/test/e2e/tests/test-workflow-visualizer.js index df894a3944..4b0b502348 100644 --- a/awx/ui/test/e2e/tests/test-workflow-visualizer.js +++ b/awx/ui/test/e2e/tests/test-workflow-visualizer.js @@ -21,8 +21,8 @@ const nodeRemove = "//*[contains(@class, 'nodeRemoveCross')]"; // one of the jobs or projects or inventories const testActionsProject = "//td[contains(text(), 'test-actions-project')]"; const testActionsJob = "//td[contains(text(), 'test-actions-job')]"; -const testActionsProjectText = "test-actions-project"; -const testActionsJobText = "test-actions-job"; +const testActionsProjectText = 'test-actions-project'; +const testActionsJobText = 'test-actions-job'; // search bar for visualizer templates const jobSearchBar = "//*[contains(@id, 'workflow-jobs-list')]//input[contains(@class, 'SmartSearch-input')]";