From 068d18189bf6c0f9a2a606a94de5d74b75b14991 Mon Sep 17 00:00:00 2001 From: Jacobs Date: Fri, 5 Feb 2016 16:22:04 -0500 Subject: [PATCH] test(tab): fix ng-repeat select twice callback The select callback for the ng-repeat select test twice was bound to the scope callback instead of the select property in the tabs array. Closes #5419 --- src/tabs/test/tabs.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tabs/test/tabs.spec.js b/src/tabs/test/tabs.spec.js index 554b938cb1..bbc0a0d80f 100644 --- a/src/tabs/test/tabs.spec.js +++ b/src/tabs/test/tabs.spec.js @@ -309,7 +309,7 @@ describe('tabs', function() { scope.select = jasmine.createSpy(); elm = $compile([ '', - ' ', + ' ', ' heading {{index}}', ' content {{$index}}', ' ',