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 e99ffa1 commit 6c9856cCopy full SHA for 6c9856c
tests/ndarray/test_lazyexpr.py
@@ -1579,6 +1579,7 @@ def __len__(self):
1579
1580
a = np.arange(100, dtype=np.int64).reshape(10, 10)
1581
b = NewObj(a)
1582
- lb = blosc2.lazyexpr("b + 1")
+ c = blosc2.asarray(a)
1583
+ lb = blosc2.lazyexpr("b + c + 1")
1584
- np.testing.assert_array_equal(lb[:], a + 1)
1585
+ np.testing.assert_array_equal(lb[:], a + a + 1)
0 commit comments