From d3a490ecfc316e4d8afeac3dd16decce64cf5931 Mon Sep 17 00:00:00 2001 From: Sergiu Ivanov Date: Sat, 8 May 2021 08:18:33 +0200 Subject: [PATCH] Update the test in Graphviz. --- graph.rkt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graph.rkt b/graph.rkt index 832513a..2bf59c1 100644 --- a/graph.rkt +++ b/graph.rkt @@ -160,4 +160,4 @@ (test-case "10 Graphviz" (define g (directed-graph '((a b) (b c)))) (check-equal? (graphviz g) - "digraph G {\n\tnode0 [label=\"c\"];\n\tnode1 [label=\"b\"];\n\tnode2 [label=\"a\"];\n\tsubgraph U {\n\t\tedge [dir=none];\n\t}\n\tsubgraph D {\n\t\tnode1 -> node0;\n\t\tnode2 -> node1;\n\t}\n}\n"))) + "digraph G {\n\tnode0 [label=\"c\"];\n\tnode1 [label=\"a\"];\n\tnode2 [label=\"b\"];\n\tsubgraph U {\n\t\tedge [dir=none];\n\t}\n\tsubgraph D {\n\t\tnode1 -> node2;\n\t\tnode2 -> node0;\n\t}\n}\n")))