summaryrefslogtreecommitdiffstats
path: root/Wrappers/Python/test/test_BlockOperator.py
diff options
context:
space:
mode:
Diffstat (limited to 'Wrappers/Python/test/test_BlockOperator.py')
-rw-r--r--Wrappers/Python/test/test_BlockOperator.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Wrappers/Python/test/test_BlockOperator.py b/Wrappers/Python/test/test_BlockOperator.py
index d0f568b..2f33f08 100644
--- a/Wrappers/Python/test/test_BlockOperator.py
+++ b/Wrappers/Python/test/test_BlockOperator.py
@@ -81,8 +81,8 @@ class TestBlockOperator(unittest.TestCase):
ImageGeometry(10,22,31) , \
ImageGeometry(10,20,31) ]
x = [ g.allocate() for g in ig ]
- ops = [ Identity(g, gm_range=r) for g,r in zip(ig, rg0) ]
- ops += [ Identity(g, gm_range=r) for g,r in zip(ig, rg1) ]
+ ops = [ Identity(g, range_geometry=r) for g,r in zip(ig, rg0) ]
+ ops += [ Identity(g, range_geometry=r) for g,r in zip(ig, rg1) ]
K = BlockOperator(*ops, shape=(2,3))
print ("K col comp? " , K.column_wise_compatible())