diff options
author | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2021-12-06 13:04:39 +0100 |
---|---|---|
committer | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2021-12-06 13:04:39 +0100 |
commit | 0bad868e66827f94ae93a909dc8ea330a8540a11 (patch) | |
tree | d12794348dba51f9604f5f2db57881be6238eae2 | |
parent | 33f52988134d11096b69352671c54045a30a82d4 (diff) | |
download | astra-0bad868e66827f94ae93a909dc8ea330a8540a11.tar.gz astra-0bad868e66827f94ae93a909dc8ea330a8540a11.tar.bz2 astra-0bad868e66827f94ae93a909dc8ea330a8540a11.tar.xz astra-0bad868e66827f94ae93a909dc8ea330a8540a11.zip |
Fix test
-rw-r--r-- | tests/python/test_rec_scaling.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/python/test_rec_scaling.py b/tests/python/test_rec_scaling.py index a20aacb..4567d5d 100644 --- a/tests/python/test_rec_scaling.py +++ b/tests/python/test_rec_scaling.py @@ -137,7 +137,7 @@ class TestRecScale(unittest.TestCase): def single_test_adjoint3D(self, geom_type, proj_type): for vg in VolumeGeometries(True, True): - for pg in ProjectionGeometries(geom_type): + for pg in ProjectionGeometries(geom_type, False): for i in range(5): X = np.random.random(astra.geom_size(vg)) Y = np.random.random(astra.geom_size(pg)) |