Skip to content

Commit 4be9d8f

Browse files
committed
Lint error fixes
1 parent 2da1574 commit 4be9d8f

File tree

2 files changed

+19
-3
lines changed

2 files changed

+19
-3
lines changed

test/e2e/clusterlocaldomaintls/cluster_local_domain_tls_test.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ func TestClusterLocalDomainTLSClusterLocalVisibility(t *testing.T) {
8686
Path: svcUrl.Path,
8787
}
8888
t.Run(dns.name, func(t *testing.T) {
89-
t.Parallel()
9089
e2e.TestProxyToHelloworld(t, clients, helloworldURL, false, false, secret)
9190
})
9291
}
@@ -136,7 +135,6 @@ func TestClusterLocalDomainTLSClusterExternalVisibility(t *testing.T) {
136135

137136
// Check normal access on external domain
138137
t.Run("external-access", func(t *testing.T) {
139-
t.Parallel()
140138
e2e.TestProxyToHelloworld(t, clients, externalURL, false, true, secret)
141139
})
142140

@@ -148,7 +146,6 @@ func TestClusterLocalDomainTLSClusterExternalVisibility(t *testing.T) {
148146
Path: internalURL.Path,
149147
}
150148
t.Run(dns.name, func(t *testing.T) {
151-
t.Parallel()
152149
e2e.TestProxyToHelloworld(t, clients, helloworldURL, false, false, secret)
153150
})
154151
}

test/e2e/httpproxy.go

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
//go:build e2e
2+
// +build e2e
3+
4+
/*
5+
Copyright 2023 The Knative Authors
6+
7+
Licensed under the Apache License, Version 2.0 (the "License");
8+
you may not use this file except in compliance with the License.
9+
You may obtain a copy of the License at
10+
11+
http://www.apache.org/licenses/LICENSE-2.0
12+
13+
Unless required by applicable law or agreed to in writing, software
14+
distributed under the License is distributed on an "AS IS" BASIS,
15+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16+
See the License for the specific language governing permissions and
17+
limitations under the License.
18+
*/
19+
120
package e2e
221

322
import (

0 commit comments

Comments
 (0)