@@ -331,8 +331,10 @@ class MockResponse:
331331 return MockResponse
332332
333333 def get_ext_table_async_mockreturn (self , coordinate , radius = None ,
334- timeout = IrsaDust .TIMEOUT ):
335- return (commons .FileContainer (self .data (EXT_TBL )))
334+ timeout = IrsaDust .TIMEOUT ,
335+ show_progress = True ):
336+ return (commons .FileContainer (self .data (EXT_TBL ),
337+ show_progress = show_progress ))
336338
337339 def get_image_list_mockreturn (
338340 self , coordinate , radius = None , image_type = None ,
@@ -341,9 +343,11 @@ def get_image_list_mockreturn(
341343
342344 def get_images_async_mockreturn (self , coordinate , radius = None ,
343345 image_type = None , timeout = IrsaDust .TIMEOUT ,
344- get_query_payload = False ):
346+ get_query_payload = False ,
347+ show_progress = True ):
345348 readable_obj = commons .FileContainer (self .data (IMG_FITS ),
346- encoding = 'binary' )
349+ encoding = 'binary' ,
350+ show_progress = show_progress )
347351 return [readable_obj ]
348352
349353 def set_ext_table_text (self , text , xml_tree ):
0 commit comments