diff options
author | Mathieu Othacehe <othacehe@gnu.org> | 2025-07-09 16:28:32 +0200 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2025-07-09 16:30:07 +0200 |
commit | b8a93c92610e9189b075c1ab7a4dba8556c970e8 (patch) | |
tree | 55005cdb21477019e207a413ff362493b59bcf13 /gnu/tests/mail.scm | |
parent | 64df79d9ee9edb7209cf588c4a98cc1345882a4f (diff) |
tests: Fix opensmtpd.wip-fix-system-tests
Change-Id: I88db2c4b883a789359c402018c40804355040115
Diffstat (limited to 'gnu/tests/mail.scm')
-rw-r--r-- | gnu/tests/mail.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/tests/mail.scm b/gnu/tests/mail.scm index 4ebee3ef99..e6a5a5b5ce 100644 --- a/gnu/tests/mail.scm +++ b/gnu/tests/mail.scm @@ -99,8 +99,8 @@ match from any for local action inbound (test-assert "mbox is empty" (marionette-eval - '(and (file-exists? "/var/spool/mail") - (not (file-exists? "/var/spool/mail/root"))) + '(and (file-exists? "/var/mail") + (not (file-exists? "/var/mail/root"))) marionette)) (test-eq "accept an email" @@ -150,7 +150,7 @@ match from any for local action inbound (let wait ((n 20)) (cond ((queue-empty?) - (file-exists? "/var/spool/mail/root")) + (file-exists? "/var/mail/root")) ((zero? n) (error "root mailbox didn't show up")) (else |