diff options
author | Ludovic Courtès <ludo@gnu.org> | 2016-07-30 01:07:50 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2016-07-30 15:47:28 +0200 |
commit | 716753cb9768dde6494b4bd2895f2186c31c0e34 (patch) | |
tree | 457e26ec1d76bd78d9657c62d6cdddd2d589f1b2 | |
parent | 359aba76b655813895e7ed9290110e3750914d8b (diff) | |
download | patches-716753cb9768dde6494b4bd2895f2186c31c0e34.tar patches-716753cb9768dde6494b4bd2895f2186c31c0e34.tar.gz |
tests: base: Correct invalid merge.
Fixes a regression introduced by merge commit
7575655212ecfbcd1f04e429c8a7a41f8720d027.
* gnu/tests/base.scm (run-basic-test)[test]: Fix list of 'use-modules'
and 'test-begin' call.
-rw-r--r-- | gnu/tests/base.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/tests/base.scm b/gnu/tests/base.scm index 479403e5c1..a6278b25d4 100644 --- a/gnu/tests/base.scm +++ b/gnu/tests/base.scm @@ -73,6 +73,8 @@ properties of running system to what's declared in OS, an <operating-system>." (with-imported-modules '((gnu build marionette)) #~(begin (use-modules (gnu build marionette) + (srfi srfi-1) + (srfi srfi-26) (srfi srfi-64) (ice-9 match)) @@ -82,7 +84,7 @@ properties of running system to what's declared in OS, an <operating-system>." (mkdir #$output) (chdir #$output) - (test-begin "mcron") + (test-begin "basic") (test-assert "uname" (match (marionette-eval '(uname) marionette) |