Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
rhugonnet committed Sep 11, 2024
1 parent a5591e3 commit 0c038d7
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions tests/test_coreg/test_affine.py
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,6 @@ def test_coreg_translations__synthetic(self, fit_args, shifts, coreg_method) ->
tol = 0.01 if coreg_method != coreg.ICP else 0.05
assert np.nanvar(dh / np.nanstd(init_dh)) < tol


@pytest.mark.parametrize(
"coreg_method__shift",
[
Expand Down Expand Up @@ -388,9 +387,7 @@ def test_coreg_vertical_translation__example(
assert vshift == pytest.approx(expected_vshift)

@pytest.mark.parametrize("fit_args", all_fit_args) # type: ignore
@pytest.mark.parametrize(
"shifts_rotations", [(20, 5, 0, 0.02, 0.05, 0.1), (-50, 100, 0, 10, 5, 4)]
) # type: ignore
@pytest.mark.parametrize("shifts_rotations", [(20, 5, 0, 0.02, 0.05, 0.1), (-50, 100, 0, 10, 5, 4)]) # type: ignore
@pytest.mark.parametrize("coreg_method", [coreg.ICP]) # type: ignore
def test_coreg_rigid__synthetic(self, fit_args, shifts_rotations, coreg_method) -> None:
"""
Expand Down

0 comments on commit 0c038d7

Please sign in to comment.