Skip to content

Commit cde1ed8

Browse files
author
Courtney Gallen
committed
updated tests to threshold adjacency matrix to pass with new uptri and diag zero-ing
1 parent 8740324 commit cde1ed8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

brainx/tests/test_util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ def test_threshold_adjacency_matrix(self):
112112
npt.assert_equal(mask.sum(), 0)
113113
npt.assert_equal(real_cost, 0)
114114
mask, real_cost = util.threshold_adjacency_matrix(adj_matrix, .9)
115-
npt.assert_equal(mask.sum(), 1840)
115+
npt.assert_equal(mask.sum(), 1800)
116116
npt.assert_equal(real_cost, 0.9)
117117

118118
def test_find_true_cost(self):

0 commit comments

Comments
 (0)