@@ -7,7 +7,7 @@ describe('radio', () => {
77 it ( 'should be checked when clicked' , ( ) => {
88 element ( by . id ( 'water' ) ) . click ( ) ;
99 element ( by . id ( 'water' ) ) . getAttribute ( 'class' ) . then ( ( value : string ) => {
10- expect ( value ) . toContain ( 'md -radio-checked' ) ;
10+ expect ( value ) . toContain ( 'mat -radio-checked' ) ;
1111 } ) ;
1212 element ( by . css ( 'input[id=water-input]' ) ) . getAttribute ( 'checked' ) . then ( ( value : string ) => {
1313 expect ( value ) . toBeTruthy ( ) ;
@@ -18,7 +18,7 @@ describe('radio', () => {
1818
1919 element ( by . id ( 'leaf' ) ) . click ( ) ;
2020 element ( by . id ( 'leaf' ) ) . getAttribute ( 'class' ) . then ( ( value : string ) => {
21- expect ( value ) . toContain ( 'md -radio-checked' ) ;
21+ expect ( value ) . toContain ( 'mat -radio-checked' ) ;
2222 } ) ;
2323 element ( by . css ( 'input[id=leaf-input]' ) ) . getAttribute ( 'checked' ) . then ( ( value : string ) => {
2424 expect ( value ) . toBeTruthy ( ) ;
@@ -32,15 +32,15 @@ describe('radio', () => {
3232 element ( by . id ( 'toggle-disable' ) ) . click ( ) ;
3333 element ( by . id ( 'water' ) ) . click ( ) ;
3434 element ( by . id ( 'water' ) ) . getAttribute ( 'class' ) . then ( ( value : string ) => {
35- expect ( value ) . toContain ( 'md -radio-disabled' ) ;
35+ expect ( value ) . toContain ( 'mat -radio-disabled' ) ;
3636 } ) ;
3737 element ( by . css ( 'input[id=water-input]' ) ) . getAttribute ( 'disabled' ) . then ( ( value : string ) => {
3838 expect ( value ) . toBeTruthy ( ) ;
3939 } ) ;
4040
4141 element ( by . id ( 'leaf' ) ) . click ( ) ;
4242 element ( by . id ( 'leaf' ) ) . getAttribute ( 'class' ) . then ( ( value : string ) => {
43- expect ( value ) . toContain ( 'md -radio-disabled' ) ;
43+ expect ( value ) . toContain ( 'mat -radio-disabled' ) ;
4444 } ) ;
4545 element ( by . css ( 'input[id=leaf-input]' ) ) . getAttribute ( 'disabled' ) . then ( ( value : string ) => {
4646 expect ( value ) . toBeTruthy ( ) ;
0 commit comments