Skip to content

Commit c418c41

Browse files
committed
Fix incorrect test.
1 parent 4c561c3 commit c418c41

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/test_vertexoredgedatagraph.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ using Test: @test, @test_throws, @testset
360360
@test !isassigned(gs, 1 => 2)
361361

362362
gs = similar_graph(g, Char)
363-
@test vertex_data_type(gs) === Char
363+
@test edge_data_type(gs) === Char
364364
@test nv(gs) == 3
365365
@test ne(gs) == 2
366366
gs[3 => 1] = 'C'

0 commit comments

Comments
 (0)