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)
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 4f85432d2fc..43f7b733f91 100644
--- a/tests/graph.scm
+++ b/tests/graph.scm
@@ -232,7 +232,7 @@ edges."
232 (run-with-store %store 232 (run-with-store %store
233 (let ((packages (fold-packages cons '()))) 233 (let ((packages (fold-packages cons '())))
234 (mlet %store-monad ((edges (node-edges %package-node-type packages))) 234 (mlet %store-monad ((edges (node-edges %package-node-type packages)))
235 (return (and (null? (edges grep)) 235 (return (and (null? (edges sed))
236 (lset= eq? 236 (lset= eq?
237 (edges guile-2.0) 237 (edges guile-2.0)
238 (match (package-direct-inputs guile-2.0) 238 (match (package-direct-inputs guile-2.0)