Skip to content

Commit

Permalink
Fix function call in test
Browse files Browse the repository at this point in the history
  • Loading branch information
bwohlberg committed Sep 10, 2024
1 parent c5a5a32 commit 5f4f06f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scico/test/linop/xray/test_astra.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ def test_convert_to_scico_geometry(test_geometry):
Basic regression test, `test_project_coords` tests the logic.
"""
vol_geom, proj_geom = test_geometry
matrices_truth = scico.linop.xray.astra.convert_to_scico_geometry(vol_geom, proj_geom)
matrices_truth = scico.linop.xray.astra._astra_to_scico_geometry(vol_geom, proj_geom)
truth = np.array([[[0.0, 1.0, 0.0, -2.0], [0.0, 0.0, 1.0, -1.0]]])
np.testing.assert_allclose(matrices_truth, truth)

Expand Down

0 comments on commit 5f4f06f

Please sign in to comment.