diff options
author | Leo Famulari <leo@famulari.name> | 2021-12-23 18:46:36 -0500 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2021-12-23 18:49:05 -0500 |
commit | ba744faeb104a1132d9f6ed04fc296b23bc09334 (patch) | |
tree | 3c279ed7cee86a1201012946e292aff4bc616305 | |
parent | 56478abbd0a46ac086e19a2aecc2985fd96798ed (diff) |
tests: git: Avoid ambiguous module import.
Fixes this warning:
WARNING: (guix tests git): `reset' imported from both (git) and (ice-9 control)
This is a followup to commit 07145c8a8cef3860a6c522d81e387bd0485c83ce.
* guix/tests/git.scm: Only import LET/EC from (ice-9 control).
-rw-r--r-- | guix/tests/git.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/tests/git.scm b/guix/tests/git.scm index 76f5a8b937..94f1021c79 100644 --- a/guix/tests/git.scm +++ b/guix/tests/git.scm @@ -23,7 +23,7 @@ #:use-module (guix utils) #:use-module (guix build utils) #:use-module (ice-9 match) - #:use-module (ice-9 control) + #:use-module ((ice-9 control) #:select (let/ec)) #:export (git-command with-temporary-git-repository with-git-repository |