sharlatan pushed a commit to branch python-team
in repository guix.

commit 4db60ce7843d29e2f22db4c43f533640ff2c3ee9
Author: Nicolas Graves <[email protected]>
AuthorDate: Mon Mar 10 03:16:10 2025 +0100

    gnu: python-h2: Fix test-flags.
    
    * gnu/packages/python-web.scm (python-h2)[arguments]{test-flags}:
    Fix quoting.
    
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/python-web.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 4add5ef144..42a63b96d8 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -2485,9 +2485,9 @@ and that could be anything you want.")
               (string-join
                (list "not test_remotesettingschanged_repr"
                      ;; This test exceededs the Hypothesis deadline.
-                     ,@(if (target-riscv64?)
-                           `("test_changing_max_frame_size")
-                           '())
+                     #$@(if (target-riscv64?)
+                            #~("test_changing_max_frame_size")
+                            #~())
                      "test_streamreset_repr"
                      "test_settingsacknowledged_repr"
                      "test_connectionterminated_repr[None-None]"

Reply via email to