Merge pull request #1425 from RichardScothern/fix-build
Correct type for repo reference
This commit is contained in:
commit
5e4ea38a2f
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ import (
|
|||
// obtained using Seek
|
||||
func TestWriteSeek(t *testing.T) {
|
||||
ctx := context.Background()
|
||||
imageName := "foo/bar"
|
||||
imageName, _ := reference.ParseNamed("foo/bar")
|
||||
driver := inmemory.New()
|
||||
registry, err := NewRegistry(ctx, driver, BlobDescriptorCacheProvider(memory.NewInMemoryBlobDescriptorCacheProvider()), EnableDelete, EnableRedirect)
|
||||
if err != nil {
|
||||
|
|
Loading…
Reference in a new issue