Use go.uber.org/mock instead of github.com/golang/mock and rerun mock generation

This commit is contained in:
Joshua Casey
2024-03-11 13:42:30 -05:00
parent 135eab037e
commit bc8aebeffe
34 changed files with 122 additions and 79 deletions

View File

@@ -1,4 +1,4 @@
// Copyright 2023 the Pinniped contributors. All Rights Reserved.
// Copyright 2023-2024 the Pinniped contributors. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
package clientcertissuer
@@ -8,8 +8,8 @@ import (
"testing"
"time"
"github.com/golang/mock/gomock"
"github.com/stretchr/testify/require"
"go.uber.org/mock/gomock"
"go.pinniped.dev/internal/mocks/issuermocks"
)