Skip to content

Commit

Permalink
TST: representable no longer requires schema as extra argument.
Browse files Browse the repository at this point in the history
  • Loading branch information
epatters committed Jun 22, 2024
1 parent 2582cb6 commit bcd987c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/Migrations.jl
Original file line number Diff line number Diff line change
Expand Up @@ -454,8 +454,8 @@ WGF = WeightedGraph{Float64}
yV, yE = WGF(1), @acset(WGF, begin
V=2;E=1;Weight=1;src=2;tgt=1; weight=[AttrVar(1)]
end)
@test representable(WGF, SchWeightedGraph, :V) == yV
@test is_isomorphic(representable(WGF, SchWeightedGraph, :E), yE)
@test representable(WGF, :V) == yV
@test is_isomorphic(representable(WGF, :E), yE)

yWG = yoneda(WGF)

Expand Down

0 comments on commit bcd987c

Please sign in to comment.