Skip to content

Commit

Permalink
Fix "test_process_deconvolution"
Browse files Browse the repository at this point in the history
  • Loading branch information
multimeric committed Dec 19, 2023
1 parent 298c52b commit 1868666
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions core/tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ def assert_h5(output_dir: Path):
[["--save-type", "h5"], assert_h5],
[["--save-type", "tiff"], assert_tiff],
[["--save-type", "tiff", "--time-start", "0", "--time-end", "1"], assert_tiff],
[["--save-type", "tiff", "--z-start", "0", "--z-end", "1"], assert_tiff],
]
)
def test_batch_deskew(flags: List[str], check_fn: Callable[[Path], None]):
Expand Down
2 changes: 1 addition & 1 deletion core/tests/test_process.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def test_process_deconv_crop():

@pytest.mark.parametrize(["background"], [(1, ), ("auto",), ("second_last",)])
@parameterized
def test_process_deconvolution(args: dict, background: Any, crop: Any):
def test_process_deconvolution(args: dict, background: Any):
for slice in LatticeData.parse_obj({
"input_image": root / "raw.tif",
"deconvolution": {
Expand Down

0 comments on commit 1868666

Please sign in to comment.