guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: tests: git: Avoid ambiguous module import.


From: guix-commits
Subject: branch master updated: tests: git: Avoid ambiguous module import.
Date: Thu, 23 Dec 2021 18:49:30 -0500

This is an automated email from the git hooks/post-receive script.

lfam pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new ba744fa  tests: git: Avoid ambiguous module import.
ba744fa is described below

commit ba744faeb104a1132d9f6ed04fc296b23bc09334
Author: Leo Famulari <leo@famulari.name>
AuthorDate: Thu Dec 23 18:46:36 2021 -0500

    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).
---
 guix/tests/git.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/guix/tests/git.scm b/guix/tests/git.scm
index 76f5a8b..94f1021 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]