Skip to content

Commit 29ecce6

Browse files
committed
fix: broken serializer test
1 parent 33e264e commit 29ecce6

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

test/serializer_test.exs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ defmodule Graph.SerializerTests do
77
assert {:ok,
88
"""
99
strict digraph {
10-
"start"
11-
"{:complex, :label}"
12-
"c"
13-
"finish"
14-
"start" -> "{:complex, :label}" [weight=3]
15-
"{:complex, :label}" -> "c" [label=5; weight=1]
16-
"{:complex, :label}" -> "finish" [label=1.0; weight=3]
17-
"c" -> "finish" [weight=1]
10+
97[label="start"]
11+
98[label="{:complex, :label}"]
12+
99[label="c"]
13+
100[label="finish"]
14+
97 -> 98 [weight=3]
15+
98 -> 99 [label=5; weight=1]
16+
98 -> 100 [label=1.0; weight=3]
17+
99 -> 100 [weight=1]
1818
}
1919
"""} = Graph.to_dot(g)
2020
end

0 commit comments

Comments
 (0)