Skip to content

Commit 935f54d

Browse files
committed
Fix tests
1 parent 4493230 commit 935f54d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

tests/ndarray/test_lazyexpr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
import blosc2
1616
from blosc2.lazyexpr import ne_evaluate
17-
from blosc2.ndarray import get_chunks_idx, npvecdot
17+
from blosc2.utils import get_chunks_idx, npvecdot
1818

1919
NITEMS_SMALL = 100
2020
NITEMS = 1000

tests/ndarray/test_linalg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
import blosc2
99
from blosc2.lazyexpr import linalg_funcs
10-
from blosc2.ndarray import npvecdot
10+
from blosc2.utils import npvecdot
1111

1212

1313
@pytest.mark.parametrize(

tests/ndarray/test_proxy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
import pytest
1111

1212
import blosc2
13-
from blosc2.ndarray import get_chunks_idx
13+
from blosc2.utils import get_chunks_idx
1414

1515
argnames = "urlpath, shape, chunks, blocks, slices, dtype"
1616
argvalues = [

0 commit comments

Comments
 (0)