Browse Source

clientv3: fix go1.8 go fmt warning in test

Anthony Romano 8 years ago
parent
commit
a0149106b8
1 changed files with 2 additions and 2 deletions
  1. 2 2
      clientv3/client_test.go

+ 2 - 2
clientv3/client_test.go

@@ -82,11 +82,11 @@ func TestDialTimeout(t *testing.T) {
 	defer testutil.AfterTest(t)
 
 	testCfgs := []Config{
-		Config{
+		{
 			Endpoints:   []string{"http://254.0.0.1:12345"},
 			DialTimeout: 2 * time.Second,
 		},
-		Config{
+		{
 			Endpoints:   []string{"http://254.0.0.1:12345"},
 			DialTimeout: time.Second,
 			Username:    "abc",