From c0f9ee5e6ef50f0f100cf63ccd8ec117cc69d1c3 Mon Sep 17 00:00:00 2001 From: mabashian Date: Mon, 11 Feb 2019 11:38:28 -0500 Subject: [PATCH] Fixes linting errors --- awx/ui/test/unit/components/jobs-list-split-jobs.unit.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/awx/ui/test/unit/components/jobs-list-split-jobs.unit.js b/awx/ui/test/unit/components/jobs-list-split-jobs.unit.js index e5da40c676..6cc4ff7ae0 100644 --- a/awx/ui/test/unit/components/jobs-list-split-jobs.unit.js +++ b/awx/ui/test/unit/components/jobs-list-split-jobs.unit.js @@ -35,11 +35,10 @@ describe('View: Split Jobs List', () => { get: (str) => { if (str === 'list.SLICE_JOB') { return 'Slice Job'; - } else { - return ''; } + return ''; } - } + }; ProcessErrors = jasmine.createSpy('ProcessErrors'); Wait = jasmine.createSpy('Wait');