Skip to content

Commit

Permalink
Delete old test data.
Browse files Browse the repository at this point in the history
  • Loading branch information
paulgoleary committed Sep 8, 2024
1 parent 5361ba5 commit b0951d7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 174 deletions.
3 changes: 2 additions & 1 deletion backend/mdl_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,9 @@ func TestDecodeFailure(t *testing.T) {
testLen := len(testDec)
_ = testLen

_, err := base64.RawURLEncoding.DecodeString(testDec)
testBytes, err := base64.RawURLEncoding.DecodeString(testDec)
require.NoError(t, err)
println(string(testBytes))
}

func extractJWKPublicKey(kid string) (pk *ecdsa.PublicKey, err error) {
Expand Down
Loading

0 comments on commit b0951d7

Please sign in to comment.