tests: Use sed instead of grep as a package with no dependencies.

* tests/graph.scm ("node-edges"): Choose SED instead of GREP as the
example.
This commit is contained in:
Ludovic Courtès 2016-01-13 18:19:01 +01:00
parent 8c986ab120
commit 724eaef1b2
1 changed files with 1 additions and 1 deletions

View File

@ -232,7 +232,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 grep))
(return (and (null? (edges sed))
(lset= eq?
(edges guile-2.0)
(match (package-direct-inputs guile-2.0)