mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Chore: use any rather than interface{} (#74066)
This commit is contained in:
@@ -165,7 +165,7 @@ func TestLogsResultsToDataframes(t *testing.T) {
|
||||
aws.String("fakelogstream"),
|
||||
})
|
||||
hiddenLogStreamField.SetConfig(&data.FieldConfig{
|
||||
Custom: map[string]interface{}{
|
||||
Custom: map[string]any{
|
||||
"hidden": true,
|
||||
},
|
||||
})
|
||||
@@ -176,7 +176,7 @@ func TestLogsResultsToDataframes(t *testing.T) {
|
||||
aws.String("fakelog"),
|
||||
})
|
||||
hiddenLogField.SetConfig(&data.FieldConfig{
|
||||
Custom: map[string]interface{}{
|
||||
Custom: map[string]any{
|
||||
"hidden": true,
|
||||
},
|
||||
})
|
||||
@@ -193,7 +193,7 @@ func TestLogsResultsToDataframes(t *testing.T) {
|
||||
},
|
||||
RefID: "",
|
||||
Meta: &data.FrameMeta{
|
||||
Custom: map[string]interface{}{
|
||||
Custom: map[string]any{
|
||||
"Status": "ok",
|
||||
},
|
||||
Stats: []data.QueryStat{
|
||||
@@ -265,7 +265,7 @@ func TestLogsResultsToDataframes_MixedTypes_NumericValuesMixedWithStringFallBack
|
||||
},
|
||||
RefID: "",
|
||||
Meta: &data.FrameMeta{
|
||||
Custom: map[string]interface{}{
|
||||
Custom: map[string]any{
|
||||
"Status": "ok",
|
||||
},
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user