From 5009ea28cfad42b1677a77c5745fc91b1cf68643 Mon Sep 17 00:00:00 2001 From: Daisuke Maki Date: Fri, 19 Apr 2024 13:10:25 +0900 Subject: [PATCH] Fix import path --- jwk/BUILD.bazel | 2 +- jwk/es256k_go1.20_test.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/jwk/BUILD.bazel b/jwk/BUILD.bazel index 1338164d4..170b1fb15 100644 --- a/jwk/BUILD.bazel +++ b/jwk/BUILD.bazel @@ -67,7 +67,7 @@ go_test( "//jwa", "//jws", "//x25519", - "//jwk/internal/x509", + "//jwk/internal/x509", "@com_github_stretchr_testify//assert", "@com_github_stretchr_testify//require", ], diff --git a/jwk/es256k_go1.20_test.go b/jwk/es256k_go1.20_test.go index 6805e1114..cae2f5441 100644 --- a/jwk/es256k_go1.20_test.go +++ b/jwk/es256k_go1.20_test.go @@ -6,7 +6,7 @@ import ( "fmt" "testing" - "github.com/decred/dcrd/dcrec/secp256k1" + "github.com/decred/dcrd/dcrec/secp256k1/v4" "github.com/lestrrat-go/jwx/v2/jwk" "github.com/stretchr/testify/require" )