Skip to content

Commit c20633b

Browse files
committed
Fix linting errors
1 parent e4e3c2c commit c20633b

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

test/e2e/install_test.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -90,13 +90,13 @@ func TestHelmInstall(t *testing.T) {
9090
},
9191
)
9292

93-
tunnel_8002 := k8s.NewTunnel(
93+
tunnel8002 := k8s.NewTunnel(
9494
kubectlOptions, k8s.ResourceTypePod, podName, 8002, 8002)
95-
defer tunnel_8002.Close()
96-
tunnel_8002.ForwardPort(t)
95+
defer tunnel8002.Close()
96+
tunnel8002.ForwardPort(t)
9797

9898
// Verify no groups beyond enode were created/modified
99-
groupStatusEndpoint := fmt.Sprintf("http://%s/manage/v2/groups?format=json", tunnel_8002.Endpoint())
99+
groupStatusEndpoint := fmt.Sprintf("http://%s/manage/v2/groups?format=json", tunnel8002.Endpoint())
100100
groupStatus := digestAuth.NewRequest(username, password, "GET", groupStatusEndpoint, "")
101101
t.Logf(`groupStatusEndpoint: %s`, groupStatusEndpoint)
102102
if resp, err = groupStatus.Execute(); err != nil {

test/e2e/separate_nodes_test.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -305,5 +305,3 @@ func TestIncorrectBootsrapHostname(t *testing.T) {
305305
}
306306
t.Logf("Enode group status response:\n" + string(body))
307307
}
308-
309-

0 commit comments

Comments
 (0)