@@ -279,7 +279,7 @@ describe('MdInputContainer', function () {
279279 fixture . componentInstance . label = 'label' ;
280280 fixture . detectChanges ( ) ;
281281
282- let hint = fixture . debugElement . query ( By . css ( '.md -hint' ) ) . nativeElement ;
282+ let hint = fixture . debugElement . query ( By . css ( '.mat -hint' ) ) . nativeElement ;
283283
284284 expect ( hint . getAttribute ( 'id' ) ) . toBeTruthy ( ) ;
285285 } ) ;
@@ -435,7 +435,7 @@ describe('MdInputContainer', function () {
435435 fixture . componentInstance . label = 'label' ;
436436 fixture . detectChanges ( ) ;
437437
438- let hint = fixture . debugElement . query ( By . css ( '.md -hint' ) ) . nativeElement ;
438+ let hint = fixture . debugElement . query ( By . css ( '.mat -hint' ) ) . nativeElement ;
439439 let input = fixture . debugElement . query ( By . css ( 'input' ) ) . nativeElement ;
440440
441441 expect ( input . getAttribute ( 'aria-describedby' ) ) . toBe ( hint . getAttribute ( 'id' ) ) ;
@@ -447,7 +447,7 @@ describe('MdInputContainer', function () {
447447 fixture . componentInstance . label = 'label' ;
448448 fixture . detectChanges ( ) ;
449449
450- let hint = fixture . debugElement . query ( By . css ( '.md -hint' ) ) . nativeElement ;
450+ let hint = fixture . debugElement . query ( By . css ( '.mat -hint' ) ) . nativeElement ;
451451 let input = fixture . debugElement . query ( By . css ( 'input' ) ) . nativeElement ;
452452
453453 expect ( input . getAttribute ( 'aria-describedby' ) ) . toBe ( hint . getAttribute ( 'id' ) ) ;
@@ -470,8 +470,8 @@ describe('MdInputContainer', function () {
470470
471471 fixture . detectChanges ( ) ;
472472
473- let hintLabel = fixture . debugElement . query ( By . css ( '.md -hint' ) ) . nativeElement ;
474- let endLabel = fixture . debugElement . query ( By . css ( '.md -hint[align="end"]' ) ) . nativeElement ;
473+ let hintLabel = fixture . debugElement . query ( By . css ( '.mat -hint' ) ) . nativeElement ;
474+ let endLabel = fixture . debugElement . query ( By . css ( '.mat -hint[align="end"]' ) ) . nativeElement ;
475475 let input = fixture . debugElement . query ( By . css ( 'input' ) ) . nativeElement ;
476476 let ariaValue = input . getAttribute ( 'aria-describedby' ) ;
477477
0 commit comments