diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-12-23 12:25:27 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-01-21 23:42:19 +0000 |
commit | 0dbaac5d997f03697ffaa8e33b28c940eb0ba1be (patch) | |
tree | 5b96e97c3962825fdf9a0a4d44ab21ba8283ec3f | |
parent | ee08e6dac81e14686f7bc9939ffc2a84343ba3ae (diff) |
gnu: go-github-com-quic-go-webtransport-go: Fix tests.
* gnu/packages/golang-web.scm (go-github-com-quic-go-webtransport-go)
[arguments] <test-flags>: Skip one test.
Change-Id: I1fa7288e9fa60be10310fcd8dbc6347b55769ef5
-rw-r--r-- | gnu/packages/golang-web.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm index a3158264bb..48fccc14f3 100644 --- a/gnu/packages/golang-web.scm +++ b/gnu/packages/golang-web.scm @@ -5818,7 +5818,9 @@ protocol.") (build-system go-build-system) (arguments (list - #:import-path "github.com/quic-go/webtransport-go")) + #:import-path "github.com/quic-go/webtransport-go" + ;; Error: "68" is not greater than "80" + #:test-flags #~(list "-skip" "TestDatagrams"))) (native-inputs (list go-go-uber-org-mock go-github-com-stretchr-testify)) |