summaryrefslogtreecommitdiff
path: root/tests/graph.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2016-01-13 18:19:01 +0100
committerLudovic Courtès <ludo@gnu.org>2016-01-13 18:19:01 +0100
commit724eaef1b2b9aef206c35361fc6ec2ed149cf26c (patch)
treef0c5cf2655e73e408c006fb5924e69fd6f1bea9b /tests/graph.scm
parent8c986ab12034d67db836a881f57c69754d8073ae (diff)
downloadpatches-724eaef1b2b9aef206c35361fc6ec2ed149cf26c.tar
patches-724eaef1b2b9aef206c35361fc6ec2ed149cf26c.tar.gz
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.
Diffstat (limited to 'tests/graph.scm')
-rw-r--r--tests/graph.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/graph.scm b/tests/graph.scm
index 4f85432d2f..43f7b733f9 100644
--- a/tests/graph.scm
+++ b/tests/graph.scm
@@ -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)