1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-13 10:30:43 +02:00

gnu: go-github-com-smarty-gunit: Fix tests.

* gnu/packages/golang-check.scm (go-github-com-smarty-gunit) [arguments]
<test-flags>: Skip one test.

Change-Id: I83f00b9f43af9d0e45694d740b7864544a6791f0
This commit is contained in:
Sharlatan Hellseher 2024-12-27 21:23:33 +00:00
parent 0cd8106fe9
commit 82f5ca3ecb
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -1460,7 +1460,13 @@ functions and even in applications.")
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/smarty/gunit"))
#:import-path "github.com/smarty/gunit"
;; Expected: [&{ BowlingGameScoringTests [0xc000080020
;; 0xc000080040 0xc000080060 0xc000080080 0xc0000800a0]}]
;; Actual: [&{ BowlingGameScoringTests [0xc0000da920
;; 0xc0000da940 0xc0000da960 0xc0000da9a0 0xc0000da9c0]}]
#:test-flags
#~(list "-skip" "TestParseFileWithValidFixturesAndConstructs")))
(home-page "https://github.com/smarty/gunit")
(synopsis "Golang xUnit-style test fixture test adapter")
(description