Skip to content

Commit f9c3bf0

Browse files
committed
fix typo
1 parent c97a893 commit f9c3bf0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_prediction.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def test_predict_with_pipeline(prep: Prep):
4141
assert out == prep.output_sample
4242

4343

44-
@pytest.mark.parameterize("tensor_input", ["numpy", "xarray"])
44+
@pytest.mark.parametrize("tensor_input", ["numpy", "xarray"])
4545
def test_predict_with_model_description(
4646
tensor_input: Literal["numpy", "xarray"], prep: Prep
4747
):
@@ -64,7 +64,7 @@ def test_predict_with_model_description(
6464
assert out == prep.output_sample
6565

6666

67-
@pytest.mark.parameterize("with_proces", [True, False])
67+
@pytest.mark.parametrize("with_proces", [True, False])
6868
def test_predict_with_blocking(with_procs: bool, prep: Prep):
6969
input_block_shape: Mapping[MemberId, Mapping[AxisId, int]] = {
7070
list(prep.input_sample.members)[0]: {

0 commit comments

Comments
 (0)