@@ -41,7 +41,7 @@ describe('<ListItemText />', () => {
4141 const wrapper = shallow ( < ListItemText primary = "This is the primary text" /> ) ;
4242 assert . strictEqual ( wrapper . children ( ) . length , 1 , 'should have 1 child' ) ;
4343 assert . strictEqual ( wrapper . childAt ( 0 ) . type ( ) , Typography ) ;
44- assert . strictEqual ( wrapper . childAt ( 0 ) . props ( ) . variant , 'subtitle1 ' ) ;
44+ assert . strictEqual ( wrapper . childAt ( 0 ) . props ( ) . variant , 'subheading ' ) ;
4545 assert . strictEqual (
4646 wrapper
4747 . childAt ( 0 )
@@ -111,7 +111,7 @@ describe('<ListItemText />', () => {
111111
112112 assert . strictEqual ( wrapper . children ( ) . length , 2 , 'should have 2 children' ) ;
113113 assert . strictEqual ( wrapper . childAt ( 0 ) . type ( ) , Typography ) ;
114- assert . strictEqual ( wrapper . childAt ( 0 ) . props ( ) . variant , 'subtitle1 ' ) ;
114+ assert . strictEqual ( wrapper . childAt ( 0 ) . props ( ) . variant , 'subheading ' ) ;
115115 assert . strictEqual (
116116 wrapper
117117 . childAt ( 0 )
@@ -152,7 +152,7 @@ describe('<ListItemText />', () => {
152152
153153 assert . strictEqual ( wrapper . children ( ) . length , 2 , 'should have 2 children' ) ;
154154 assert . strictEqual ( wrapper . childAt ( 0 ) . type ( ) , Typography ) ;
155- assert . strictEqual ( wrapper . childAt ( 0 ) . props ( ) . variant , 'subtitle1 ' ) ;
155+ assert . strictEqual ( wrapper . childAt ( 0 ) . props ( ) . variant , 'subheading ' ) ;
156156 assert . strictEqual (
157157 wrapper
158158 . childAt ( 0 )
0 commit comments