Skip to content

Commit 07a9611

Browse files
authored
[chore] Fix CI lint issues due to TLSSetting -> TLS field in test (#40479)
Fix issue reported by @mx-psi after a merge. Signed-off-by: Israel Blancas <[email protected]>
1 parent 0087046 commit 07a9611

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

exporter/coralogixexporter/logs_client_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ func TestLogsExporter_PushLogs_Performance(t *testing.T) {
383383
cfg := &Config{
384384
Logs: configgrpc.ClientConfig{
385385
Endpoint: endpoint,
386-
TLSSetting: configtls.ClientConfig{
386+
TLS: configtls.ClientConfig{
387387
Insecure: true,
388388
},
389389
Headers: map[string]configopaque.String{},

exporter/coralogixexporter/metrics_client_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,7 @@ func TestMetricsExporter_PushMetrics_Performance(t *testing.T) {
402402
cfg := &Config{
403403
Metrics: configgrpc.ClientConfig{
404404
Endpoint: endpoint,
405-
TLSSetting: configtls.ClientConfig{
405+
TLS: configtls.ClientConfig{
406406
Insecure: true,
407407
},
408408
Headers: map[string]configopaque.String{},

exporter/coralogixexporter/profiles_client_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,7 @@ func TestProfilesExporter_PushProfiles_Performance(t *testing.T) {
399399
cfg := &Config{
400400
Profiles: configgrpc.ClientConfig{
401401
Endpoint: endpoint,
402-
TLSSetting: configtls.ClientConfig{
402+
TLS: configtls.ClientConfig{
403403
Insecure: true,
404404
},
405405
Headers: map[string]configopaque.String{},

exporter/coralogixexporter/traces_client_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ func TestTracesExporter_PushTraces_Performance(t *testing.T) {
387387
cfg := &Config{
388388
Traces: configgrpc.ClientConfig{
389389
Endpoint: endpoint,
390-
TLSSetting: configtls.ClientConfig{
390+
TLS: configtls.ClientConfig{
391391
Insecure: true,
392392
},
393393
Headers: map[string]configopaque.String{},

0 commit comments

Comments
 (0)