1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-03-17 20:47:50 +02:00

fixed silly test mistake

This commit is contained in:
Carlos Alexandro Becker 2017-07-04 21:47:05 -03:00
parent cf82223f28
commit 128dfa7749
No known key found for this signature in database
GPG Key ID: E61E2F7DC14AB940

View File

@ -46,8 +46,8 @@ func TestRunPipe(t *testing.T) {
assert.NoError(doRun(ctx, client))
assert.True(client.CreatedRelease)
assert.True(client.UploadedFile)
assert.Contains("bin.deb", client.UploadedFileNames)
assert.Contains("bin.tar.gz", client.UploadedFileNames)
assert.Contains(client.UploadedFileNames, "bin.deb")
assert.Contains(client.UploadedFileNames, "bin.tar.gz")
}
func TestRunPipeReleaseCreationFailed(t *testing.T) {