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:
Hana Kim 2017-04-18 22:56:20 -04:00 committed by Derek Parker
parent e4b609bf2b
commit 92dad944d7
4 changed files with 5 additions and 5 deletions

@ -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"
)