Skip to content

Commit f2ae6aa

Browse files
committed
bugfix b541ff0
1 parent b541ff0 commit f2ae6aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_knn.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ def test_shortest_path():
333333
def test_shortest_path_decay():
334334
data_small = data[np.random.choice(
335335
len(data), len(data) // 4, replace=False)]
336-
G = build_graph(data_small, knn=5, decay=15)
336+
G = build_graph(data_small, knn=5, decay=15, thresh=1e-4)
337337
G.shortest_path()
338338

339339

0 commit comments

Comments
 (0)