service/test: change test package name to service_test
According to https://golang.org/cmd/go/#hdr-Test_packages service_test is more appropriate becuase this directory contains no non-test code and the intention is to compile these *_test.go files as a separate package and link/run with the main test package.
This commit is contained in:
parent
e4b609bf2b
commit
92dad944d7
@ -1,4 +1,4 @@
|
||||
package servicetest
|
||||
package service_test
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
|
@ -1,4 +1,4 @@
|
||||
package servicetest
|
||||
package service_test
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
|
@ -1,4 +1,4 @@
|
||||
package servicetest
|
||||
package service_test
|
||||
|
||||
import (
|
||||
"flag"
|
||||
|
@ -1,4 +1,4 @@
|
||||
package servicetest
|
||||
package service_test
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
@ -8,8 +8,8 @@ import (
|
||||
"testing"
|
||||
|
||||
"github.com/derekparker/delve/pkg/proc"
|
||||
"github.com/derekparker/delve/service/api"
|
||||
"github.com/derekparker/delve/pkg/target"
|
||||
"github.com/derekparker/delve/service/api"
|
||||
|
||||
protest "github.com/derekparker/delve/pkg/proc/test"
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user