@@ -36,22 +36,22 @@ const data = `{
3636
3737const result = new Result ( null , data ) ;
3838
39- describe ( 'the Result class' , function ( ) {
40- describe ( 'the info property' , function ( ) {
41- it ( 'should only return messages of the info type' , function ( ) {
39+ describe ( 'the Result class' , function ( ) {
40+ describe ( 'the info property' , function ( ) {
41+ it ( 'should only return messages of the info type' , function ( ) {
4242expect ( result . info . length ) . to . equal ( 4 ) ;
4343} ) ;
4444} ) ;
4545
46- describe ( 'the warnings property' , function ( ) {
47- it ( 'should only return messages of the warnings type' , function ( ) {
46+ describe ( 'the warnings property' , function ( ) {
47+ it ( 'should only return messages of the warnings type' , function ( ) {
4848expect ( result . warnings . length ) . to . equal ( 2 ) ;
4949} ) ;
5050} ) ;
5151
52- describe ( 'the errors property' , function ( ) {
53- it ( 'should only return messages of the errors type' , function ( ) {
52+ describe ( 'the errors property' , function ( ) {
53+ it ( 'should only return messages of the errors type' , function ( ) {
5454expect ( result . errors . length ) . to . equal ( 1 ) ;
5555} ) ;
5656} ) ;
57- } ) ;
57+ } ) ;
0 commit comments