Skip to content

Commit db179f5

Browse files
committed
Fix test failed.
1 parent 9a1aac6 commit db179f5

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

hbbrain/tests/test_matrix_transformation.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
[0.2, 1, 0.3, 0.4, 0.6],
1515
[0.5, 0.1, 1, 0.6, 0.1],
1616
[0.6, 0.2, 0.3, 1, 0.7],
17-
[0.2, 0.8, 0.4, 0.4, 1]])
17+
[0.2, 0.8, 0.4, 0.4, 1]], dtype=float)
1818

1919

2020
def test_split_matrix_non_sort_min():
@@ -28,7 +28,7 @@ def test_split_matrix_non_sort_min():
2828
[1, 4, 0.6],
2929
[2, 3, 0.3],
3030
[2, 4, 0.1],
31-
[3, 4, 0.4]])
31+
[3, 4, 0.4]], dtype=float)
3232
assert (split_max == expected_res).all()
3333

3434

@@ -43,7 +43,7 @@ def test_split_matrix_non_sort_max():
4343
[1, 4, 0.8],
4444
[2, 3, 0.6],
4545
[2, 4, 0.4],
46-
[3, 4, 0.7]])
46+
[3, 4, 0.7]], dtype=float)
4747
assert (split_max == expected_res).all()
4848

4949

@@ -58,7 +58,7 @@ def test_split_matrix_sorted_min():
5858
[0, 1, 0.2],
5959
[2, 4, 0.1],
6060
[1, 2, 0.1],
61-
[0, 4, 0.1]])
61+
[0, 4, 0.1]], dtype=float)
6262
assert (split_max == expected_res).all()
6363

6464

@@ -73,7 +73,7 @@ def test_split_matrix_sorted_max():
7373
[1, 3, 0.4],
7474
[1, 2, 0.3],
7575
[0, 1, 0.3],
76-
[0, 4, 0.2]])
76+
[0, 4, 0.2]], dtype=float)
7777
assert (split_max == expected_res).all()
7878

7979

0 commit comments

Comments
 (0)