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 (
"context"
"fmt"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
"net"
"sync"
"syscall"
"testing"
"time"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
func TestGinkgoSuite(t *testing.T) {

View File

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