1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-24 04:16:27 +02:00

fix: brew test

This commit is contained in:
Carlos Alexandro Becker 2018-01-26 15:45:38 -02:00
parent a16a4a2e14
commit 535e0e0a80
No known key found for this signature in database
GPG Key ID: E61E2F7DC14AB940

View File

@ -387,7 +387,7 @@ type DummyClient struct {
Content string
}
func (client *DummyClient) CreateRelease(ctx *context.Context, body string) (releaseID int, err error) {
func (client *DummyClient) CreateRelease(ctx *context.Context, body string) (releaseID int64, err error) {
return
}
@ -398,6 +398,6 @@ func (client *DummyClient) CreateFile(ctx *context.Context, content bytes.Buffer
return
}
func (client *DummyClient) Upload(ctx *context.Context, releaseID int, name string, file *os.File) (err error) {
func (client *DummyClient) Upload(ctx *context.Context, releaseID int64, name string, file *os.File) (err error) {
return
}