1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

*: use opencontainers/go-digest package

The `digest` data type, used throughout docker for image verification
and identity, has been broken out into `opencontainers/go-digest`. This
PR updates the dependencies and moves uses over to the new type.

Signed-off-by: Stephen J Day <stephen.day@docker.com>
This commit is contained in:
Stephen J Day 2017-01-06 17:23:18 -08:00
parent fad6db4465
commit 7a85579917
No known key found for this signature in database
GPG key ID: FB5F6B2905D7ECF3
53 changed files with 86 additions and 99 deletions

View file

@ -5,8 +5,8 @@ import (
"os"
"testing"
"github.com/docker/distribution/digest"
"github.com/docker/docker/layer"
"github.com/opencontainers/go-digest"
)
func TestRestore(t *testing.T) {