Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewpmartinez committed Oct 5, 2024
1 parent e1b7f1e commit 778807d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions controller/model/testing.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ import (
"testing"
"time"

"errors"
"github.com/golang-jwt/jwt/v5"
"github.com/google/uuid"
"github.com/openziti/identity"
Expand Down Expand Up @@ -53,7 +52,7 @@ type TestContext struct {
}

func (ctx *TestContext) GetEnrollmentJwtSigner() (jwtsigner.Signer, error) {
return nil, errors.New("not implemented")
return ctx, nil
}

func (ctx *TestContext) GetEventDispatcher() event.Dispatcher {
Expand Down

0 comments on commit 778807d

Please sign in to comment.