gnu: go-github-com-go-fed-httpsig: Skip one more test.

* gnu/packages/golang-web.scm (go-github-com-go-fed-httpsig) [arguments]
<test-flags>: Skip one more failing test.

Change-Id: I99d1b7e29a8157ef03881c661c60149c7497ebf3
This commit is contained in:
Sharlatan Hellseher 2025-06-12 11:19:35 +01:00
parent c1922e0ba1
commit 6633e061eb
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -3282,8 +3282,14 @@ decompose request handling into many smaller layers.")
(arguments
(list
#:import-path "github.com/go-fed/httpsig"
;; algorithms_test.go:153: "sha1": got true, want false
#:test-flags #~(list "-skip" "TestIsAvailable")))
#:test-flags
#~(list "-skip" (string-join
;; algorithms_test.go:153: "sha1": got true, want false
(list "TestIsAvailable"
;; "rsa_SHA3_224": expected error, got:
;; %!s(<nil>)
"TestSignerSigns")
"|"))))
(propagated-inputs
(list go-golang-org-x-crypto))
(home-page "https://github.com/go-fed/httpsig")