Dependencies: Clean up gofrs/uuid (#51615)

* Dependencies: switch from gofrs/uuid to google/uuid

Co-authored-by: Jeff Levin <jeff@levinology.com>
This commit is contained in:
Emil Tullstedt
2022-06-30 10:55:33 -08:00
committed by GitHub
co-authored by Jeff Levin
parent 281ed419a8
commit a14ca8fb62
5 changed files with 11 additions and 10 deletions
+2 -2
View File
@@ -10,7 +10,7 @@ import (
"strings"
"testing"
"github.com/gofrs/uuid"
"github.com/google/uuid"
"github.com/grafana/grafana-plugin-sdk-go/backend"
"github.com/grafana/grafana-plugin-sdk-go/data"
"github.com/stretchr/testify/assert"
@@ -60,7 +60,7 @@ func TestAPIGetPublicDashboard(t *testing.T) {
})
DashboardUid := "dashboard-abcd1234"
token, err := uuid.NewV4()
token, err := uuid.NewRandom()
require.NoError(t, err)
accessToken := fmt.Sprintf("%x", token)