Skip to content

Commit 5bb0466

Browse files
committed
Fix eltype edge test (Int not Int64)
1 parent 296d213 commit 5bb0466

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/knn_graph/edge_tests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
@test e1 < e3
3434
end
3535
e1 = HeapKNNGraphEdge(1, 2, .5, true)
36-
@test eltype(e1) == Int64
36+
@test eltype(e1) == Int
3737

3838
@testset "property methods" begin
3939
e1 = HeapKNNGraphEdge(3, 4, 0., true)

0 commit comments

Comments
 (0)