Skip to content

Commit

Permalink
TST: updated padding values (to discuss with balticfish)
Browse files Browse the repository at this point in the history
  • Loading branch information
ken-lauer committed Aug 21, 2024
1 parent a879cbe commit 3a89b43
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_wavefront.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,12 @@ def test_smoke_focusing_element(wavefront: Wavefront) -> None:
[
pytest.param(
WavefrontPadding(grid=(10,), pad=(10,)),
WavefrontPadding(grid=(11,), pad=(11,)),
WavefrontPadding(grid=(10,), pad=(11,)),
id="1d",
),
pytest.param(
WavefrontPadding(grid=(10, 10), pad=(10, 10)),
WavefrontPadding(grid=(11, 11), pad=(11, 11)),
WavefrontPadding(grid=(10, 10), pad=(11, 11)),
id="2d",
),
],
Expand All @@ -87,7 +87,7 @@ def test_smoke_properties(wavefront: Wavefront) -> None:
)
assert np.isclose(wavefront.wavelength, 1.35e-8)
assert wavefront.pad.grid == (11, 21, 21)
assert wavefront.pad.pad == (44, 102, 102)
assert wavefront.pad.pad == (44, 100, 100)


def test_copy(wavefront: Wavefront) -> None:
Expand Down

0 comments on commit 3a89b43

Please sign in to comment.