From fd3876ec2a47909eac8e7fa0f24710a94ccb1459 Mon Sep 17 00:00:00 2001 From: Evgeny Pisemsky Date: Wed, 5 Feb 2025 20:05:32 +0300 Subject: [PATCH] gnu: emacs-go-translate: Improve code style. * gnu/packages/emacs-xyz.scm (emacs-go-translate): Improve code style. Change-Id: I0a2601a34907169a0792e1a7a2b05ecd8ca2119a Signed-off-by: Ian Eure --- gnu/packages/emacs-xyz.scm | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 06f95418b7fed4967e2ec7f27a9104e1120ecb97..4821824b8b9e139b28994674a54b2f2faf2c4439 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -29239,15 +29239,10 @@ the GIF result.") (arguments (list #:tests? #t - #:test-command #~(list "emacs" - "-Q" - "--batch" - "-L" - "." - "-l" - "gt-tests.el" - "-f" - "ert-run-tests-batch-and-exit") + #:test-command #~(list "emacs" "-Q" "--batch" + "-L" "." + "-l" "gt-tests.el" + "-f" "ert-run-tests-batch-and-exit") #:phases #~(modify-phases %standard-phases (add-before 'check 'skip-failing-tests (lambda _ @@ -29255,7 +29250,8 @@ the GIF result.") (("\\(ert-deftest test--gt-translation-life-cycle .*" all) (string-append all "(skip-unless nil)\n")) - (("\\(ert-deftest test--gt-valid-literally .*" all) + (("\\(ert-deftest test--gt-valid-literally .*" + all) (string-append all "(skip-unless nil)\n")))))))) (home-page "https://github.com/lorniu/go-translate/") (synopsis "Configurable and scalable translation framework")