tests: Use sed instead of grep as a package with no dependencies.
authorLudovic Courtès <ludo@gnu.org>
Wed, 13 Jan 2016 17:19:01 +0000 (18:19 +0100)
committerLudovic Courtès <ludo@gnu.org>
Wed, 13 Jan 2016 17:19:01 +0000 (18:19 +0100)
* tests/graph.scm ("node-edges"): Choose SED instead of GREP as the
example.

tests/graph.scm

index 4f85432..43f7b73 100644 (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)