@@ -75,7 +75,7 @@ describe('<ListItemText />', () => {
7575      const  wrapper  =  shallow ( < ListItemText  secondary = "This is the secondary text"  /> ) ; 
7676      assert . strictEqual ( wrapper . children ( ) . length ,  1 ,  'should have 1 child' ) ; 
7777      assert . strictEqual ( wrapper . childAt ( 0 ) . type ( ) ,  Typography ) ; 
78-       assert . strictEqual ( wrapper . childAt ( 0 ) . props ( ) . variant ,  'body2 ' ) ; 
78+       assert . strictEqual ( wrapper . childAt ( 0 ) . props ( ) . variant ,  'body1 ' ) ; 
7979      assert . strictEqual ( 
8080        wrapper . childAt ( 0 ) . props ( ) . color , 
8181        'textSecondary' , 
@@ -122,7 +122,7 @@ describe('<ListItemText />', () => {
122122      ) ; 
123123
124124      assert . strictEqual ( wrapper . childAt ( 1 ) . type ( ) ,  Typography ) ; 
125-       assert . strictEqual ( wrapper . childAt ( 1 ) . props ( ) . variant ,  'body2 ' ) ; 
125+       assert . strictEqual ( wrapper . childAt ( 1 ) . props ( ) . variant ,  'body1 ' ) ; 
126126      assert . strictEqual ( wrapper . childAt ( 1 ) . props ( ) . color ,  'textSecondary' ) ; 
127127      assert . strictEqual ( 
128128        wrapper 
@@ -163,7 +163,7 @@ describe('<ListItemText />', () => {
163163    ) ; 
164164
165165    assert . strictEqual ( wrapper . childAt ( 1 ) . type ( ) ,  Typography ) ; 
166-     assert . strictEqual ( wrapper . childAt ( 1 ) . props ( ) . variant ,  'body2 ' ) ; 
166+     assert . strictEqual ( wrapper . childAt ( 1 ) . props ( ) . variant ,  'body1 ' ) ; 
167167    assert . strictEqual ( wrapper . childAt ( 1 ) . props ( ) . color ,  'textSecondary' ) ; 
168168    assert . strictEqual ( 
169169      wrapper 
0 commit comments