Skip to content

Commit

Permalink
fix test bug
Browse files Browse the repository at this point in the history
  • Loading branch information
JeroenDoornbos committed Oct 3, 2024
1 parent de461d1 commit 0c9fb21
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Install dependencies
run: |
poetry install --with dev,opengl
poetry install --with dev
- name: Run tests
run: |
Expand Down
2 changes: 1 addition & 1 deletion tests/test_algorithms_troubleshoot.py
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ def test_fidelity_phase_calibration_ssa_with_noise(
aberration = StaticSource(aberration_phase, extent=2 * numerical_aperture)
img = np.zeros((64, 64), dtype=np.int16)
img[32, 32] = 250
src = StaticSource(img, 500 * u.nm)
src = StaticSource(img, pixel_size = 500 * u.nm)

# SLM, simulation, camera, ROI detector
slm = SLM(shape=(80, 80))
Expand Down

0 comments on commit 0c9fb21

Please sign in to comment.