Skip to content

Commit b2aca82

Browse files
committed
test client needs it too
1 parent 1155f51 commit b2aca82

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

client/testclient/client.go

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,12 @@ func (c *TestClient) ListBranches(ctx context.Context, repoDirs []string, args .
5151
return nil
5252
}
5353

54+
func (c *TestClient) ListTags(ctx context.Context, repoDirs []string, args ...string) error {
55+
c.CommandsCalled = append(c.CommandsCalled, "ListTags")
56+
57+
return nil
58+
}
59+
5460
func (c *TestClient) PullRepos(ctx context.Context, repoDirs []string, args ...string) error {
5561
c.CommandsCalled = append(c.CommandsCalled, "PullRepos")
5662

0 commit comments

Comments
 (0)