@@ -303,6 +303,7 @@ describe('HttpTspClient Deserialization', () => {
303303 const genericResponse = response . getModel ( ) ! ;
304304 const model = genericResponse . model ;
305305
306+ expect ( model . expandLevel ) . toEqual ( - 1 ) ;
306307 expect ( model . entries ) . toHaveLength ( 1 ) ;
307308 expect ( model . headers ) . toHaveLength ( 0 ) ;
308309 for ( const entry of model . entries ) {
@@ -373,7 +374,8 @@ describe('HttpTspClient Deserialization', () => {
373374 { name : 'Total' , tooltip : '' , } ,
374375 { name : 'Min Time Range' , tooltip : '' , dataType : DataType . TIME_RANGE } ,
375376 { name : 'Max Time Range' , tooltip : '' , dataType : DataType . TIME_RANGE } ] ;
376-
377+
378+ expect ( model . expandLevel ) . toEqual ( - 1 ) ;
377379 expect ( model . entries ) . toHaveLength ( 4 ) ;
378380 expect ( model . headers ) . toHaveLength ( 9 ) ;
379381
@@ -399,6 +401,7 @@ describe('HttpTspClient Deserialization', () => {
399401 const genericResponse = response . getModel ( ) ! ;
400402 const model = genericResponse . model ;
401403
404+ expect ( model . expandLevel ) . toEqual ( - 1 ) ;
402405 expect ( model . entries ) . toHaveLength ( 1 ) ;
403406 expect ( model . headers ) . toHaveLength ( 4 ) ;
404407 for ( const entry of model . entries ) {
0 commit comments