diff --git a/conformance/02_push_test.go b/conformance/02_push_test.go index 5c4122a9..b457e2cc 100644 --- a/conformance/02_push_test.go +++ b/conformance/02_push_test.go @@ -348,20 +348,6 @@ var test02Push = func() { } }) - g.Specify("Registry should accept a manifest upload with no layers", func() { - SkipIfDisabled(push) - RunOnlyIfNot(skipEmptyLayerTest) - req := client.NewRequest(reggie.PUT, "/v2//manifests/", - reggie.WithReference(emptyLayerTestTag)). - SetHeader("Content-Type", "application/vnd.oci.image.manifest.v1+json"). - SetBody(emptyLayerManifestContent) - resp, err := client.Do(req) - Expect(err).To(BeNil()) - location := resp.Header().Get("Location") - Expect(location).ToNot(BeEmpty()) - Expect(resp.StatusCode()).To(Equal(http.StatusCreated)) - }) - g.Specify("GET request to manifest URL (digest) should yield 200 response", func() { SkipIfDisabled(push) req := client.NewRequest(reggie.GET, "/v2//manifests/", reggie.WithDigest(manifests[1].Digest)).