forked from TrueCloudLab/distribution
Merge pull request #1335 from RichardScothern/fix-build
Fix manifest API unit tests
This commit is contained in:
commit
39ff320b82
1 changed files with 2 additions and 2 deletions
|
@ -1681,9 +1681,9 @@ func testManifestDelete(t *testing.T, env *testEnv, args manifestArgs) {
|
||||||
|
|
||||||
// --------------------
|
// --------------------
|
||||||
// Uupload manifest by tag
|
// Uupload manifest by tag
|
||||||
tag := signedManifest.Tag
|
tag := "atag"
|
||||||
manifestTagURL, err := env.builder.BuildManifestURL(imageName, tag)
|
manifestTagURL, err := env.builder.BuildManifestURL(imageName, tag)
|
||||||
resp = putManifest(t, "putting signed manifest by tag", manifestTagURL, signedManifest)
|
resp = putManifest(t, "putting signed manifest by tag", manifestTagURL, args.mediaType, manifest)
|
||||||
checkResponse(t, "putting signed manifest by tag", resp, http.StatusCreated)
|
checkResponse(t, "putting signed manifest by tag", resp, http.StatusCreated)
|
||||||
checkHeaders(t, resp, http.Header{
|
checkHeaders(t, resp, http.Header{
|
||||||
"Location": []string{manifestDigestURL},
|
"Location": []string{manifestDigestURL},
|
||||||
|
|
Loading…
Reference in a new issue