Skip to content

Commit 17d57ae

Browse files
Merge branch 'scalyr:master' into customer_request_9579
2 parents 32b15d9 + cdca2a3 commit 17d57ae

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pkg/plugin/plugin.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ func (d *DataSetDatasource) query(ctx context.Context, query backend.DataQuery)
118118
}
119119
}
120120

121-
if qm.TeamEmails != nil && len(qm.TeamEmails) > 0 {
121+
if len(qm.TeamEmails) > 0 {
122122
request.TeamEmails = qm.TeamEmails
123123
}
124124

pkg/plugin/plugin_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ func TestLiveQueryDataPQ(t *testing.T) {
6969
t.Error(err)
7070
}
7171
if skip != "" {
72-
t.Skipf(skip)
72+
t.Skip(skip)
7373
}
7474

7575
refId := "A"
@@ -114,7 +114,7 @@ func TestLiveQueryDataPlot(t *testing.T) {
114114
t.Error(err)
115115
}
116116
if skip != "" {
117-
t.Skipf(skip)
117+
t.Skip(skip)
118118
}
119119

120120
refId := "A"

0 commit comments

Comments
 (0)