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

Commit

Permalink
fix(tabs): Fixed variable reference in tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
amahfouz committed Feb 7, 2016
1 parent fd1e434 commit c57c9ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tabs/test/tabs.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ describe('tabs', function() {
scope.deselectSecond = jasmine.createSpy();
elm = $compile([
'<uib-tabset class="hello" data-pizza="pepperoni">',
' <uib-tab heading="First Tab {{first}}" active="actives.one" classes="{{classesFirst}}" select="selectFirst()" deselect="deselectFirst()">',
' <uib-tab heading="First Tab {{first}}" active="actives.one" classes="{{firstClass}}" select="selectFirst()" deselect="deselectFirst()">',
' first content is {{first}}',
' </uib-tab>',
' <uib-tab active="actives.two" classes="{{classesSecond}}" select="selectSecond()" deselect="deselectSecond()">',
' <uib-tab active="actives.two" classes="{{secondClass}}" select="selectSecond()" deselect="deselectSecond()">',
' <uib-tab-heading><b>Second</b> Tab {{second}}</uib-tab-heading>',
' second content is {{second}}',
' </uib-tab>',
Expand Down

0 comments on commit c57c9ef

Please sign in to comment.