|
1 | 1 | using MetaGraphs |
2 | | -import LightGraphs: SimpleGraphs |
| 2 | +import Graphs: SimpleGraphs |
3 | 3 | import Base64: |
4 | 4 | stringmime |
5 | 5 |
|
@@ -32,8 +32,8 @@ import Base64: |
32 | 32 | @test eltype(@inferred(MetaGraph{UInt8,Float16}(mg))) == UInt8 |
33 | 33 | @test weighttype(@inferred(MetaGraph{UInt8,Float16}(mg))) == Float16 |
34 | 34 |
|
35 | | - @test @inferred(MetaGraphs.fadj(mg, 2)) == LightGraphs.SimpleGraphs.fadj(g, 2) |
36 | | - @test @inferred(MetaGraphs.badj(mg, 2)) == LightGraphs.SimpleGraphs.badj(g, 2) |
| 35 | + @test @inferred(MetaGraphs.fadj(mg, 2)) == Graphs.SimpleGraphs.fadj(g, 2) |
| 36 | + @test @inferred(MetaGraphs.badj(mg, 2)) == Graphs.SimpleGraphs.badj(g, 2) |
37 | 37 |
|
38 | 38 | @test @inferred(edgetype(mg)) == edgetype(mg.graph) |
39 | 39 |
|
@@ -88,8 +88,8 @@ import Base64: |
88 | 88 | @test eltype(@inferred(MetaDiGraph{UInt8,Float16}(mg))) == UInt8 |
89 | 89 | @test weighttype(@inferred(MetaDiGraph{UInt8,Float16}(mg))) == Float16 |
90 | 90 |
|
91 | | - @test @inferred(MetaGraphs.fadj(mg, 2)) == LightGraphs.SimpleGraphs.fadj(g, 2) |
92 | | - @test @inferred(MetaGraphs.badj(mg, 2)) == LightGraphs.SimpleGraphs.badj(g, 2) |
| 91 | + @test @inferred(MetaGraphs.fadj(mg, 2)) == Graphs.SimpleGraphs.fadj(g, 2) |
| 92 | + @test @inferred(MetaGraphs.badj(mg, 2)) == Graphs.SimpleGraphs.badj(g, 2) |
93 | 93 |
|
94 | 94 | @test @inferred(edgetype(mg)) == edgetype(mg.graph) |
95 | 95 |
|
|
0 commit comments