Skip to content
This repository has been archived by the owner on May 29, 2019. It is now read-only.

Commit

Permalink
fix(tooltip): fix jshint error
Browse files Browse the repository at this point in the history
  • Loading branch information
wesleycho committed Aug 11, 2015
1 parent 581161d commit 17cc39f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tooltip/test/tooltip.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 17cc39f

Please sign in to comment.