Skip to content
This repository was archived by the owner on Jul 19, 2022. It is now read-only.

Commit a567014

Browse files
committed
bugfix
1 parent e68f8b4 commit a567014

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/util/test_pipeline.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
from sparsereg.util.pipeline import ColumnSelector
66

77
cases = ((np.random.random(10), 0),
8-
(np.random.random((10, 2)), 1),
9-
(np.random.random((10, 2), slice(None)))
8+
(np.random.random(size=(10, 2)), 1),
9+
(np.random.random(size=(10, 2)), slice(None))
1010
)
1111

1212
@pytest.mark.parametrize("case", cases)

0 commit comments

Comments
 (0)