diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-03-10 03:16:10 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2025-04-16 11:46:15 +0200 |
| commit | fcc266cf251b81ea8865d99b49069d060719423b (patch) | |
| tree | e764233c08c977c45c033ce92976531fda998759 /gnu | |
| parent | 24ad03da5a8ec2e7ae0ac997891db696db5394e6 (diff) | |
gnu: python-h2: Fix test-flags.
* gnu/packages/python-web.scm (python-h2)[arguments]{test-flags}:
Fix quoting.
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/python-web.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 599918a054d..5ef7972365f 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -2486,9 +2486,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]" |
