We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9712a0b commit c6f8456Copy full SHA for c6f8456
1 file changed
tests/ndarray/test_lazyexpr.py
@@ -1485,6 +1485,13 @@ def test_chain_expressions():
1485
assert lexpr1.expression == lexpr3.expression
1486
assert lexpr1.operands == lexpr3.operands
1487
1488
+ # chain constructors
1489
+ expr1 = "linspace(0, 10, 100)"
1490
+ lexpr1 = blosc2.lazyexpr(expr1)
1491
+ lexpr1 *= 2
1492
+ assert lexpr1.expression == "((linspace(0, 10, 100)) * 2)"
1493
+ assert lexpr1.shape == (100,)
1494
+
1495
1496
# Test the chaining of multiple persistent lazy expressions
1497
def test_chain_persistentexpressions():
0 commit comments