right type used

This commit is contained in:
2026-02-20 15:29:26 +02:00
parent 1c8f6f142c
commit 09f2125a4e
14 changed files with 121 additions and 138 deletions
+3 -3
View File
@@ -17,9 +17,9 @@ import (
"time"
"mstore/app/server"
"mstore/pkg/auxuuid"
"mstore/pkg/client"
"mstore/pkg/terms"
"mstore/pkg/uuid"
"github.com/stretchr/testify/require"
@@ -81,7 +81,7 @@ func TestAccountLife(t *testing.T) {
username := "testuser"
password := "testpass"
var accountID auxuuid.UUID
var accountID uuid.UUID
{
// CreateAccount
fmt.Printf("=== CreateAccount ===\n")
@@ -92,7 +92,7 @@ func TestAccountLife(t *testing.T) {
accountID, err = cli.CreateAccount(ctx, srvaddr, username, password)
require.NoError(t, err)
}
var grantID auxuuid.UUID
var grantID uuid.UUID
{
// CreateGrant
fmt.Printf("=== CreateGrant ===\n")