From 384f015c6714e887bd4c920acdd536033d4eef7d Mon Sep 17 00:00:00 2001 From: colemanw Date: Tue, 24 Apr 2018 10:21:13 -0400 Subject: [PATCH] Fix js lint issues --- tests/karma/unit/crmCaseTypeSpec.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/karma/unit/crmCaseTypeSpec.js b/tests/karma/unit/crmCaseTypeSpec.js index 4f67bc0f11..b647afc2fe 100644 --- a/tests/karma/unit/crmCaseTypeSpec.js +++ b/tests/karma/unit/crmCaseTypeSpec.js @@ -1,3 +1,4 @@ +/* global $, _, CRM:true */ 'use strict'; describe('crmCaseType', function() { @@ -387,7 +388,7 @@ describe('crmCaseType', function() { }); it('displays the error message', function() { - expect(CRM.alert).toHaveBeenCalledWith(error.error_message, ts('Error'), 'error'); + expect(CRM.alert).toHaveBeenCalledWith(error.error_message, 'Error', 'error'); }); }); -- 2.25.1