Skip to content

Commit

Permalink
switch test to use run
Browse files Browse the repository at this point in the history
  • Loading branch information
braingram committed Dec 20, 2024
1 parent efcc040 commit b045b62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion romancal/pipeline/tests/test_exposure_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,5 @@ def test_input_to_output(input_value, expected_output_type):
pipeline.prefetch_references = False
# skip all steps
[setattr(getattr(pipeline, k), "skip", True) for k in pipeline.step_defs]
output_value = pipeline(input_value)
output_value = pipeline.run(input_value)
assert isinstance(output_value, expected_output_type)

0 comments on commit b045b62

Please sign in to comment.