Heatmap: Remove alpha flag from new heatmap panel (#50733) (#50742)

(cherry picked from commit b75cc7a86c)

Co-authored-by: Ryan McKinley <ryantxu@gmail.com>
This commit is contained in:
Grot (@grafanabot)
2022-06-14 03:56:45 -04:00
committed by GitHub
parent e235af676b
commit 6ac398763a
3 changed files with 1641 additions and 5 deletions
+5 -1
View File
@@ -95,7 +95,11 @@ func TestPlugins(t *testing.T) {
if !same {
if updateSnapshotFlag {
t.Log("updating snapshot results")
updateRespSnapshot(t, tc.expRespPath, string(b))
var prettyJSON bytes.Buffer
if err := json.Indent(&prettyJSON, b, "", " "); err != nil {
t.FailNow()
}
updateRespSnapshot(t, tc.expRespPath, prettyJSON.String())
}
t.FailNow()
}