Skip to content

Commit

Permalink
fixup! tests: migrate to test_data fixture
Browse files Browse the repository at this point in the history
  • Loading branch information
soxofaan committed Jun 18, 2024
1 parent a108bf0 commit 68c4bd6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/internal/processes/test_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ def apply_dimension(data, dimension, process):
:return: Data cube
"""
return _process('apply_dimension',
return _process('apply_dimension',
data=data,
dimension=dimension,
process=build_child_callback(process, parent_parameters=['data'])
Expand Down Expand Up @@ -332,7 +332,7 @@ def apply(data, process=UNSET):
:return: Data cube
"""
return _process('apply',
return _process('apply',
data=data,
process=(build_child_callback(process, parent_parameters=['data']) if process not in [None, UNSET] else process)
)'''
Expand Down

0 comments on commit 68c4bd6

Please sign in to comment.