fix: call the functions

This commit is contained in:
Roman 2025-02-25 16:56:36 +11:00
parent 48847ce5cc
commit 0b6fc270e7
No known key found for this signature in database
GPG Key ID: B8FE070B54E11B75

View File

@ -88,6 +88,8 @@ class StepsDataAvailability(StepsCommon):
assert response.status_code == 200, "Send dispersal finished with unexpected response code"
disperse()
@allure.step
def get_data_range(self, node, app_id, start, end, timeout_duration=45):
@retry(stop=stop_after_delay(timeout_duration), wait=wait_fixed(1), reraise=True)
@ -102,3 +104,5 @@ class StepsDataAvailability(StepsCommon):
assert response_contains_data(response), "Get data range response is empty"
return response
get_range()