File tree Expand file tree Collapse file tree
packages/apollo-angular/http/tests Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -981,12 +981,10 @@ describe('HttpBatchLink', () => {
981981 } ) ;
982982
983983 setTimeout ( ( ) => {
984- httpBackend
985- . expectOne ( 'graphql' )
986- . flush ( [ { errors : [ { message : 'Bad request' } ] } ] , {
987- status : 400 ,
988- statusText : 'Bad Request' ,
989- } ) ;
984+ httpBackend . expectOne ( 'graphql' ) . flush ( [ { errors : [ { message : 'Bad request' } ] } ] , {
985+ status : 400 ,
986+ statusText : 'Bad Request' ,
987+ } ) ;
990988 } , 50 ) ;
991989 } ) ) ;
992990
@@ -1204,12 +1202,10 @@ describe('HttpBatchLink', () => {
12041202 } ) ;
12051203
12061204 setTimeout ( ( ) => {
1207- httpBackend
1208- . expectOne ( 'graphql' )
1209- . flush ( [ { errors : [ { message : 'Error' } ] } ] , {
1210- status : 503 ,
1211- statusText : 'Service Unavailable' ,
1212- } ) ;
1205+ httpBackend . expectOne ( 'graphql' ) . flush ( [ { errors : [ { message : 'Error' } ] } ] , {
1206+ status : 503 ,
1207+ statusText : 'Service Unavailable' ,
1208+ } ) ;
12131209 } , 50 ) ;
12141210 } ) ) ;
12151211 } ) ;
You can’t perform that action at this time.
0 commit comments