Skip to content

Commit

Permalink
Fix eltype edge test (Int not Int64)
Browse files Browse the repository at this point in the history
  • Loading branch information
dillondaudert committed Dec 10, 2019
1 parent 296d213 commit 5bb0466
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/knn_graph/edge_tests.jl
Expand Up @@ -33,7 +33,7 @@
@test e1 < e3
end
e1 = HeapKNNGraphEdge(1, 2, .5, true)
@test eltype(e1) == Int64
@test eltype(e1) == Int

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

0 comments on commit 5bb0466

Please sign in to comment.