Update ansible test to use the new Downloader interface

This commit is contained in:
Chris Bednarski 2016-02-12 14:53:23 -08:00
parent feee19e4ed
commit 6dd02e7912
1 changed files with 4 additions and 0 deletions

View File

@ -140,3 +140,7 @@ func (c communicator) UploadDir(dst string, src string, exclude []string) error
func (c communicator) Download(string, io.Writer) error {
return errors.New("communicator not supported")
}
func (c communicator) DownloadDir(src string, dst string, exclude []string) error {
return errors.New("communicator not supported")
}