From b2b8adc7b0a1b95b0e60ff94d749e5d70f340f94 Mon Sep 17 00:00:00 2001 From: mathislucka Date: Wed, 15 Jan 2025 13:36:49 +0100 Subject: [PATCH] fix test names --- test/core/pipeline/features/test_run.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/core/pipeline/features/test_run.py b/test/core/pipeline/features/test_run.py index 054ff993a5..cdf1efb369 100644 --- a/test/core/pipeline/features/test_run.py +++ b/test/core/pipeline/features/test_run.py @@ -2978,7 +2978,7 @@ def generate_santa_sleigh(): @given("a pipeline with a component that has dynamic default inputs", target_fixture="pipeline_data") -def pipeline_that_is_linear(): +def pipeline_with_dynamic_defaults(): @component class ParrotWithDynamicDefaultInputs: def __init__(self, input_variable: str): @@ -3010,7 +3010,7 @@ def run(self, **kwargs): @given("a pipeline with a component that has variadic dynamic default inputs", target_fixture="pipeline_data") -def pipeline_that_is_linear(): +def pipeline_with_variadic_dynamic_defaults(): @component class ParrotWithVariadicDynamicDefaultInputs: def __init__(self, input_variable: str):