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 07145c8a8c.
* guix/tests/git.scm: Only import LET/EC from (ice-9 control).
			
			
This commit is contained in:
		
							parent
							
								
									56478abbd0
								
							
						
					
					
						commit
						ba744faeb1
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -23,7 +23,7 @@
 | 
				
			||||||
  #:use-module (guix utils)
 | 
					  #:use-module (guix utils)
 | 
				
			||||||
  #:use-module (guix build utils)
 | 
					  #:use-module (guix build utils)
 | 
				
			||||||
  #:use-module (ice-9 match)
 | 
					  #:use-module (ice-9 match)
 | 
				
			||||||
  #:use-module (ice-9 control)
 | 
					  #:use-module ((ice-9 control) #:select (let/ec))
 | 
				
			||||||
  #:export (git-command
 | 
					  #:export (git-command
 | 
				
			||||||
            with-temporary-git-repository
 | 
					            with-temporary-git-repository
 | 
				
			||||||
            with-git-repository
 | 
					            with-git-repository
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Reference in a new issue