conformance: fix error msg for DELETE MANIFEST

---
Ran 27 of 27 Specs in 0.120 seconds
SUCCESS! -- 27 Passed | 0 Failed | 0 Pending | 0 Skipped
PASS
---
This commit is contained in:
Ramkumar Chinchani
2020-03-25 11:22:52 -07:00
parent bbed38cfa0
commit 8ff60f9138
3 changed files with 7 additions and 3 deletions
+1 -1
View File
@@ -569,7 +569,7 @@ func CheckWorkflows(t *testing.T, config *compliance.Config) {
// delete again should fail
resp, err = resty.R().Delete(baseURL + "/v2/repo7/manifests/" + digest.String())
So(err, ShouldBeNil)
So(resp.StatusCode(), ShouldEqual, 400)
So(resp.StatusCode(), ShouldEqual, 404)
// check/get by tag
resp, err = resty.R().Head(baseURL + "/v2/repo7/manifests/test:1.0")