Skip to content

Commit aa5de65

Browse files
committed
fixup! chore(python-sdk): Update tests
1 parent 60e9cab commit aa5de65

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/aignostics/application/cli_pipeline_validation_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ def test_cli_run_submit_succeeds_with_valid_pipeline_config(runner: CliRunner, t
202202
HETA_APPLICATION_ID,
203203
str(csv_path),
204204
"--deadline",
205-
(datetime.now(tz=UTC) + timedelta(seconds=0)).isoformat(),
205+
(datetime.now(tz=UTC) + timedelta(seconds=5)).isoformat(),
206206
"--gpu-type",
207207
"L4",
208208
"--gpu-provisioning-mode",

tests/aignostics/platform/e2e_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ def _submit_and_validate( # noqa: PLR0913, PLR0917
313313
scheduling=scheduling,
314314
)
315315

316-
# Let's validate we can fiond the run by id
316+
# Let's validate we can find the run by id
317317
details = run.details()
318318
assert details.run_id == run.run_id, "Run ID mismatch after submission"
319319
assert details.application_id == application_id, "Application ID mismatch after submission"

0 commit comments

Comments
 (0)