From a99b0ad785d5b31e9d9efd2d186ab5d53544b631 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Wed, 6 Jun 2018 13:58:43 +0200 Subject: [PATCH] tests: Adjust graph test. This is a followup to 301a4249064227bc4883e4e5b638e85a65925ba0, which added a dependency to sed. * tests/graph.scm ("node-edges"): Use 'hello', not 'sed', as the example of a package without any dependency. --- tests/graph.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/graph.scm b/tests/graph.scm index b86ae4a32f..4799d3bd0c 100644 --- a/tests/graph.scm +++ b/tests/graph.scm @@ -293,7 +293,7 @@ edges." (run-with-store %store (let ((packages (fold-packages cons '()))) (mlet %store-monad ((edges (node-edges %package-node-type packages))) - (return (and (null? (edges sed)) + (return (and (null? (edges hello)) (lset= eq? (edges guile-2.0) (match (package-direct-inputs guile-2.0)