satellite/repair: move test files (#2649)

This commit is contained in:
Egon Elbre 2019-07-28 12:15:34 +03:00 committed by GitHub
parent 5d0816430f
commit dd7c8610bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 5 additions and 5 deletions

4
.github/CODEOWNERS vendored
View File

@ -2,7 +2,7 @@
/storagenode/ @aleitner
# audits
/pkg/audit/ @navillasa
/satellite/audit/ @navillasa
# node identity
/pkg/certificates/ @bryanchriswhite
@ -11,7 +11,7 @@
/pkg/transport/ @bryanchriswhite
# repair
/pkg/datarepair/ @jenlij
/satellite/repair/ @jenlij
# kademlia
/pkg/kademlia/ @jenlij

View File

@ -1,6 +1,6 @@
// Copyright (C) 2019 Storj Labs, Inc.
// See LICENSE for copying information.
package datarepair
package repair
// Empty file to workaround coverpkg issue https://golang.org/issue/27333

View File

@ -1,7 +1,7 @@
// Copyright (C) 2019 Storj Labs, Inc.
// See LICENSE for copying information.
package datarepair_test
package repair_test
import (
"context"

View File

@ -4,9 +4,9 @@
package kvmetainfo
import (
"storj.io/storj/pkg/storage/buckets"
"storj.io/storj/uplink/eestream"
"storj.io/storj/uplink/metainfo"
"storj.io/storj/uplink/storage/buckets"
"storj.io/storj/uplink/storage/streams"
)