mirror of https://github.com/grafana/grafana.git
Chore: Fix broken variable tests (#41472)
* Chore: skip failing tests * Chore: fix broken variables tests
This commit is contained in:
parent
90d2d1f4da
commit
6862c7baf8
|
|
@ -3430,5 +3430,6 @@ kind: secret
|
||||||
name: drone_token
|
name: drone_token
|
||||||
---
|
---
|
||||||
kind: signature
|
kind: signature
|
||||||
hmac: 7f5e6041ab60e051c2dd6858adff840fa77e57ac9a7befc73aaab28f588c2318
|
hmac: 21ecb408dfa778e70baa888dc5a3dc6f049aac7784ad0d7605b021cf27b02cd5
|
||||||
|
|
||||||
...
|
...
|
||||||
|
|
|
||||||
|
|
@ -1522,7 +1522,9 @@ const dashWithTemplateDependenciesAndPanels: any = {
|
||||||
text: ['A'],
|
text: ['A'],
|
||||||
value: ['A'],
|
value: ['A'],
|
||||||
},
|
},
|
||||||
datasource: '${ds}',
|
datasource: {
|
||||||
|
uid: '${ds}',
|
||||||
|
},
|
||||||
definition: '*',
|
definition: '*',
|
||||||
description: null,
|
description: null,
|
||||||
error: null,
|
error: null,
|
||||||
|
|
@ -1603,7 +1605,9 @@ const dashWithTemplateDependenciesAndPanels: any = {
|
||||||
text: 'AB',
|
text: 'AB',
|
||||||
value: 'AB',
|
value: 'AB',
|
||||||
},
|
},
|
||||||
datasource: '${ds}',
|
datasource: {
|
||||||
|
uid: '${ds}',
|
||||||
|
},
|
||||||
definition: '$query_with_ds.*',
|
definition: '$query_with_ds.*',
|
||||||
description: null,
|
description: null,
|
||||||
error: null,
|
error: null,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue