diff options
author | Mathieu Othacehe <othacehe@gnu.org> | 2021-10-12 16:50:47 +0000 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2021-10-12 17:46:23 +0000 |
commit | a1eca979fb8da842e73c42f4f53be29b169810f2 (patch) | |
tree | 681c7283e412bb8a29c2531c4408b49c3e184764 /tests/go.scm | |
parent | 48d86a9ec6d8d2e97da2299ea41a03ef4cdaab83 (diff) | |
parent | 371aa5777a3805a3886f3feea5f1960fe3fe4219 (diff) | |
download | guix-a1eca979fb8da842e73c42f4f53be29b169810f2.tar.gz |
Merge remote-tracking branch 'origin/master' into core-updates-frozen.
Diffstat (limited to 'tests/go.scm')
-rw-r--r-- | tests/go.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/go.scm b/tests/go.scm index 9e7223ff7c..a70a0ddbf5 100644 --- a/tests/go.scm +++ b/tests/go.scm @@ -99,7 +99,7 @@ replace ( ") -(define fixture-go-mod-unparseable +(define fixture-go-mod-unparsable "module my/thing go 1.12 // avoid feature X require other/thing v1.0.2 @@ -263,7 +263,7 @@ require github.com/kr/pretty v0.2.1 (with (module-path "good/thing") (version "v1.4.5")))) (parse-go.mod fixture-go-mod-simple)) -(test-equal "parse-go.mod: comments and unparseable lines" +(test-equal "parse-go.mod: comments and unparsable lines" `((module (module-path "my/thing")) (go (version "1.12") (comment "avoid feature X")) (require (module-path "other/thing") (version "v1.0.2")) @@ -274,7 +274,7 @@ require github.com/kr/pretty v0.2.1 (with (module-path "good/thing") (version "v1.4.5"))) (comment "Unparseable") (unknown "bad/thing [v1.4.5, v1.9.7] => good/thing v2.0.0")) - (parse-go.mod fixture-go-mod-unparseable)) + (parse-go.mod fixture-go-mod-unparsable)) (test-equal "parse-go.mod: retract" `((retract (version "v0.9.1")) |