test: Fix FakeIndex breakage from 82429eee.

Change-Id: I403fe39617b3d61212b6a0e6aeaffa350c441221
This commit is contained in:
Daniel Erat 2014-04-16 09:35:07 -07:00
parent 82429eeedb
commit 991675db09
1 changed files with 4 additions and 0 deletions

View File

@ -179,6 +179,10 @@ func (fi *FakeIndex) GetImageInfo(fileRef blob.Ref) (camtypes.ImageInfo, error)
panic("NOIMPL")
}
func (fi *FakeIndex) GetMediaTags(fileRef blob.Ref) (tags map[string]string, err error) {
panic("NOIMPL")
}
func (fi *FakeIndex) GetDirMembers(dir blob.Ref, dest chan<- blob.Ref, limit int) error {
panic("NOIMPL")
}