From 17cc39f4b77c7491de20675ba4ae6b0c545d7316 Mon Sep 17 00:00:00 2001 From: Wesley Cho Date: Tue, 11 Aug 2015 08:48:47 -0700 Subject: [PATCH] fix(tooltip): fix jshint error --- src/tooltip/test/tooltip.spec.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tooltip/test/tooltip.spec.js b/src/tooltip/test/tooltip.spec.js index 443989a0f3..2d7e8df96e 100644 --- a/src/tooltip/test/tooltip.spec.js +++ b/src/tooltip/test/tooltip.spec.js @@ -519,11 +519,11 @@ describe('tooltipWithDifferentSymbols', function() { var elmInput = elmBody.find('input'); elmInput.trigger('focus'); - expect elmInput.next().find('div').next().html()).toBe('My tooltip'); + expect(elmInput.next().find('div').next().html()).toBe('My tooltip'); })); }); -describe( 'tooltip positioning', function() { +describe('tooltip positioning', function() { var elm, elmBody, elmScope, tooltipScope, scope; var $position;