diff --git a/core/test/validation_test.jl b/core/test/validation_test.jl index 638721261..2f181e5fc 100644 --- a/core/test/validation_test.jl +++ b/core/test/validation_test.jl @@ -86,7 +86,7 @@ end graph[NodeID(:Pump, 6)] = NodeMetadata(:pump, 9) function set_edge_metadata!(id_1, id_2, edge_type) - graph[id_1, id_2] = EdgeMetadata(0, 0, edge_type, 0, (id_1, id_2)) + graph[id_1, id_2] = EdgeMetadata(0, 0, edge_type, 0, (id_1, id_2), (0, 0)) return nothing end @@ -163,7 +163,7 @@ end graph[NodeID(:Basin, 7)] = NodeMetadata(:basin, 0) function set_edge_metadata!(id_1, id_2, edge_type) - graph[id_1, id_2] = EdgeMetadata(0, 0, edge_type, 0, (id_1, id_2)) + graph[id_1, id_2] = EdgeMetadata(0, 0, edge_type, 0, (id_1, id_2), (0, 0)) return nothing end