Skip to content

Commit dcdf2a0

Browse files
committed
fix: address review comments (iteration #2)
1 parent 9ce5304 commit dcdf2a0

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

sagemaker-mlops/tests/unit/workflow/test_steps.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,12 @@ def test_step_validate_json_get_function_with_property_file():
383383

384384
step_map = {"processing-step": processing_step}
385385

386-
Step._validate_json_get_function(step, json_get, step_map)
386+
Step._validate_json_get_function(step, json_get, step_map)
387+
388+
389+
def test_step_find_dependencies_in_step_arguments_with_json_get():
390+
from sagemaker.mlops.workflow.steps import Step, StepTypeEnum
391+
from sagemaker.core.workflow.functions import JsonGet
387392

388393

389394

@@ -475,6 +480,7 @@ def test_step_find_dependencies_in_step_arguments_with_delayed_return():
475480

476481

477482

483+
478484
def test_step_find_dependencies_in_step_arguments_with_string_reference():
479485
from sagemaker.mlops.workflow.steps import Step
480486
from sagemaker.core.helper.pipeline_variable import PipelineVariable

0 commit comments

Comments
 (0)