diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2025-05-06 21:37:44 +0900 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2025-05-06 23:22:25 +0900 |
commit | fbf8b81971475ee712338f1c955be6ac44099fac (patch) | |
tree | 91c2d2137448c29e190ac5ae191cc2f9f732d5de | |
parent | b8afb3100ec4f0b29701e49be6fc8d218ce963f6 (diff) | |
download | guix-fbf8b81971475ee712338f1c955be6ac44099fac.tar.gz guix-fbf8b81971475ee712338f1c955be6ac44099fac.zip |
tests: Fix (gnu tests base.scm) module indentation.
* gnu/tests/base.scm: Fix indentation.
Change-Id: I3432fafa2f5c2853a14b5d125cf9377786ca6594
-rw-r--r-- | gnu/tests/base.scm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gnu/tests/base.scm b/gnu/tests/base.scm index 612af21b54..20fc848e5c 100644 --- a/gnu/tests/base.scm +++ b/gnu/tests/base.scm @@ -227,7 +227,7 @@ info --version") marionette))) (test-equal "/var/log/messages is not world-readable" - #o640 ;<https://bugs.gnu.org/40405> + #o640 ;<https://bugs.gnu.org/40405> (begin (wait-for-file "/var/log/messages" marionette #:read 'get-u8) @@ -448,7 +448,7 @@ info --version") marionette)) (test-equal "nscd invalidate action" - '(#t) ;one value, #t + '(#t) ;one value, #t (marionette-eval '(with-shepherd-action 'nscd ('invalidate "hosts") result result) @@ -458,7 +458,7 @@ info --version") ;; code of 'nscd' so skip this test. (test-skip 1) (test-equal "nscd invalidate action, wrong table" - '(#f) ;one value, #f + '(#f) ;one value, #f (marionette-eval '(with-shepherd-action 'nscd ('invalidate "xyz") result result) @@ -509,7 +509,7 @@ info --version") marionette)) (test-equal "guix-daemon set-http-proxy action" - '(#t) ;one value, #t + '(#t) ;one value, #t (marionette-eval '(with-shepherd-action 'guix-daemon ('set-http-proxy "http://localhost:8118") result @@ -517,7 +517,7 @@ info --version") marionette)) (test-equal "guix-daemon set-http-proxy action, clear" - '(#t) ;one value, #t + '(#t) ;one value, #t (marionette-eval '(with-shepherd-action 'guix-daemon ('set-http-proxy) result |