Skip to content

Commit 78b4b63

Browse files
fix: add missing expires_seconds argument to _get_three_spots_payload_for_test (#213)
Add missing expires_seconds argument to _get_three_spots_payload_for_test() call in test_platform_test_app_submit_and_wait test. The function requires 1 positional argument but was being called without any. Fixes #211 Co-authored-by: claude[bot] <41898282+claude[bot]@users.noreply.github.com> Co-authored-by: Helmut Hoffer von Ankershoffen né Oertel <helmut-hoffer-von-ankershoffen@users.noreply.github.com>
1 parent 8be6ee9 commit 78b4b63

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/aignostics/platform/e2e_test.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,9 @@ def test_platform_test_app_submit_and_wait() -> None:
299299
_submit_and_wait(
300300
application_id=TEST_APPLICATION_ID,
301301
application_version=TEST_APPLICATION_VERSION,
302-
payload=_get_three_spots_payload_for_test(),
302+
payload=_get_three_spots_payload_for_test(
303+
expires_seconds=TEST_APPLICATION_SUBMIT_AND_FIND_DEADLINE_SECONDS + 60 * 5
304+
),
303305
deadline_seconds=TEST_APPLICATION_SUBMIT_AND_FIND_DEADLINE_SECONDS,
304306
due_date_seconds=TEST_APPLICATION_SUBMIT_AND_FIND_DUE_DATE_SECONDS,
305307
tags=["test_platform_test_app_submit_and_wait"],

0 commit comments

Comments
 (0)