Skip to content

Commit 21db066

Browse files
committed
Fix tests
1 parent b4a2768 commit 21db066

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_valid_args_schemas.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def test_task_functions_have_valid_signatures():
2929
continue
3030
function_name = Path(executable).with_suffix("").name
3131
task_function = _extract_function(
32-
executable, function_name, package_name="fractal_tasks_demo"
32+
executable, function_name, package_name="fractal_helper_tasks"
3333
)
3434
_validate_function_signature(task_function)
3535

@@ -46,7 +46,7 @@ def test_args_schemas_are_up_to_date():
4646
print(f"Now handling {executable}")
4747
old_schema = task[f"args_schema_{kind}"]
4848
new_schema = create_schema_for_single_task(
49-
executable, package="fractal_tasks_demo"
49+
executable, package="fractal_helper_tasks"
5050
)
5151
# The following step is required because some arguments may have a
5252
# default which has a non-JSON type (e.g. a tuple), which we need

0 commit comments

Comments
 (0)