format imports

This commit is contained in:
hidu 2021-07-15 22:27:11 +08:00
parent f22b38daba
commit 78875ecee7
2 changed files with 6 additions and 4 deletions

View File

@ -3,13 +3,14 @@ package pool_test
import ( import (
"context" "context"
"fmt" "fmt"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
"net" "net"
"sync" "sync"
"syscall" "syscall"
"testing" "testing"
"time" "time"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
) )
func TestGinkgoSuite(t *testing.T) { func TestGinkgoSuite(t *testing.T) {

View File

@ -2,12 +2,13 @@ package pool_test
import ( import (
"context" "context"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
"sync" "sync"
"testing" "testing"
"time" "time"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
"github.com/go-redis/redis/v8/internal/pool" "github.com/go-redis/redis/v8/internal/pool"
) )