Skip to content

Commit d571fd7

Browse files
committed
Singularize dag modules
1 parent 875e16c commit d571fd7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/yog/dag/algorithms_test.gleam

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,8 @@ pub fn transitive_reduction_test() {
114114
|> model.add_edge_ensure(1, 3, 30, "")
115115

116116
let assert Ok(d) = dag_model.from_graph(g)
117-
let tr = algorithm.transitive_reduction(d, with: int.add) |> dag_model.to_graph
117+
let tr =
118+
algorithm.transitive_reduction(d, with: int.add) |> dag_model.to_graph
118119

119120
let assert Ok(targets_of_1) = dict.get(tr.out_edges, 1)
120121
dict.has_key(targets_of_1, 2) |> should.be_true

0 commit comments

Comments
 (0)