tests: base: Correct invalid merge.

Fixes a regression introduced by merge commit
7575655212.

* gnu/tests/base.scm (run-basic-test)[test]: Fix list of 'use-modules'
and 'test-begin' call.
This commit is contained in:
Ludovic Courtès 2016-07-30 01:07:50 +02:00
parent 359aba76b6
commit 716753cb97
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 3 additions and 1 deletions

View File

@ -73,6 +73,8 @@ properties of running system to what's declared in OS, an <operating-system>."
(with-imported-modules '((gnu build marionette)) (with-imported-modules '((gnu build marionette))
#~(begin #~(begin
(use-modules (gnu build marionette) (use-modules (gnu build marionette)
(srfi srfi-1)
(srfi srfi-26)
(srfi srfi-64) (srfi srfi-64)
(ice-9 match)) (ice-9 match))
@ -82,7 +84,7 @@ properties of running system to what's declared in OS, an <operating-system>."
(mkdir #$output) (mkdir #$output)
(chdir #$output) (chdir #$output)
(test-begin "mcron") (test-begin "basic")
(test-assert "uname" (test-assert "uname"
(match (marionette-eval '(uname) marionette) (match (marionette-eval '(uname) marionette)