Skip to content

Commit 26d3a26

Browse files
committed
Add the FIXME reminder about edge comparison
1 parent 9bac55e commit 26d3a26

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

internal/utils/cloudbuild_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ func isExpectedGraph(t *testing.T, expected *result, actual *cgraph.Graph) {
7575
assert.NotEmptyf(t, n, "Expected Node %s but not found in generated graph", node)
7676
}
7777
assert.Equalf(t, len(expected.Edges), actual.NumberEdges(), "Should have the same number of edges.")
78+
// FIXME This may not be too good to compare the edge. We may need a better way to compare them programmatically
7879
var buf bytes.Buffer
7980
g := graphviz.New()
8081
g.Render(actual, "dot", &buf)

0 commit comments

Comments
 (0)