Skip to content

Commit

Permalink
Merge branch 'main' of github.com:sigstore/cosign into changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
priyawadhwa committed Aug 4, 2022
2 parents e373bb7 + a39ce91 commit dbf7ef1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/e2e_test.go
Expand Up @@ -992,7 +992,7 @@ func TestSaveLoadAttestation(t *testing.T) {
must(verify(pubKeyPath, imgName, true, nil, ""), t)

// now, append an attestation to the image
slsaAttestation := `{ "builder": { "id": "2" }, "recipe": {} }`
slsaAttestation := `{ "buildType": "x", "builder": { "id": "2" }, "recipe": {} }`
slsaAttestationPath := filepath.Join(td, "attestation.slsa.json")
if err := os.WriteFile(slsaAttestationPath, []byte(slsaAttestation), 0600); err != nil {
t.Fatal(err)
Expand All @@ -1001,7 +1001,7 @@ func TestSaveLoadAttestation(t *testing.T) {
// Now attest the image
ko = options.KeyOpts{KeyRef: privKeyPath, PassFunc: passFunc}
must(attest.AttestCmd(ctx, ko, options.RegistryOptions{}, imgName, "", "", false, slsaAttestationPath, false,
"custom", false, 30*time.Second, false), t)
"slsaprovenance", false, 30*time.Second, false), t)

// save the image to a temp dir
imageDir := t.TempDir()
Expand Down

0 comments on commit dbf7ef1

Please sign in to comment.