Skip to content
This repository was archived by the owner on Oct 2, 2019. It is now read-only.

Commit 7c38698

Browse files
committed
fix(ngModel): failing test of #611
1 parent 238a428 commit 7c38698

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/select.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ describe('ui-select tests', function() {
211211
var el = compileTemplate('<wrapper-ui-select ng-model="selection.selected"/>');
212212
scope.selection.selected = { name: 'Samantha', email: 'something different than array source', group: 'bar', age: 30 };
213213
scope.$digest();
214-
expect($(el).find('.ui-select-container > .ui-select-match > button:first > span[ng-transclude]:not(.ng-hide)').text()).toEqual('Samantha');
214+
expect($(el).find('.ui-select-container > .ui-select-match > span:first > span[ng-transclude]:not(.ng-hide)').text()).toEqual('Samantha');
215215
});
216216

217217
it('should display the choices when activated', function() {

0 commit comments

Comments
 (0)