@@ -30,7 +30,7 @@ describe('pf-select', function () {
3030 expect ( select . text ( ) ) . toBe ( 'abc' ) ;
3131 expect ( select ) . toEqualSelect ( [ 'a' , [ 'b' ] , 'c' ] ) ;
3232
33- var bsSelect = angular . element ( select ) . siblings ( '.bootstrap-select ' ) ;
33+ var bsSelect = angular . element ( select ) . siblings ( '.dropdown-menu ' ) ;
3434 var bsSelItems = bsSelect . find ( 'li' ) ;
3535 expect ( bsSelItems . length ) . toBe ( $scope . options . length ) ;
3636 expect ( bsSelItems . text ( ) ) . toBe ( 'abc' ) ;
@@ -49,7 +49,7 @@ describe('pf-select', function () {
4949 expect ( select . text ( ) ) . toBe ( 'abc' ) ;
5050 expect ( select ) . toEqualSelect ( [ [ 'a' ] , 'b' , 'c' ] ) ;
5151
52- var bsSelect = angular . element ( select ) . siblings ( '.bootstrap-select ' ) ;
52+ var bsSelect = angular . element ( select ) . siblings ( '.dropdown-menu ' ) ;
5353 var bsSelItems = bsSelect . find ( 'li' ) ;
5454 expect ( bsSelItems . length ) . toBe ( $scope . options . length ) ;
5555 expect ( bsSelItems . text ( ) ) . toBe ( 'abc' ) ;
@@ -63,7 +63,7 @@ describe('pf-select', function () {
6363 expect ( select . text ( ) ) . toBe ( 'abcd' ) ;
6464 expect ( select ) . toEqualSelect ( [ [ 'a' ] , 'b' , 'c' , 'd' ] ) ;
6565
66- bsSelect = angular . element ( select ) . siblings ( '.bootstrap-select ' ) ;
66+ bsSelect = angular . element ( select ) . siblings ( '.dropdown-menu ' ) ;
6767 bsSelItems = bsSelect . find ( 'li' ) ;
6868 expect ( bsSelItems . length ) . toBe ( $scope . options . length ) ;
6969 expect ( bsSelItems . text ( ) ) . toBe ( 'abcd' ) ;
@@ -78,7 +78,7 @@ describe('pf-select', function () {
7878 expect ( select . text ( ) ) . toBe ( 'abc' ) ;
7979 expect ( select ) . toEqualSelect ( [ [ 'a' ] , 'b' , 'c' ] ) ;
8080
81- var bsSelect = angular . element ( select ) . siblings ( '.bootstrap-select ' ) ;
81+ var bsSelect = angular . element ( select ) . siblings ( '.dropdown-menu ' ) ;
8282 var bsSelItems = bsSelect . find ( 'li' ) ;
8383 expect ( bsSelItems . length ) . toBe ( $scope . options . length ) ;
8484 expect ( bsSelItems . text ( ) ) . toBe ( 'abc' ) ;
0 commit comments