diff --git a/test/e2e/fixture.go b/test/e2e/fixture.go index a03cd6de461c3..800f3ce66903b 100644 --- a/test/e2e/fixture.go +++ b/test/e2e/fixture.go @@ -370,6 +370,10 @@ func (c *FakeGitClient) LsRemote(s string) (string, error) { return "abcdef123456890", nil } +func (c *FakeGitClient) LsFiles(s string) ([]string, error) { + return []string{"abcdef123456890"}, nil +} + func (c *FakeGitClient) CommitSHA() (string, error) { return "abcdef123456890", nil }