Skip to content

Commit

Permalink
fix: pass in context
Browse files Browse the repository at this point in the history
  • Loading branch information
rosstimothy committed Dec 30, 2024
1 parent a690266 commit 256dacc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/auth/db_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ func Test_getSnowflakeJWTParams(t *testing.T) {

for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
subject, issuer := getSnowflakeJWTParams(tt.args.accountName, tt.args.userName, tt.args.publicKey)
subject, issuer := getSnowflakeJWTParams(context.Background(), tt.args.accountName, tt.args.userName, tt.args.publicKey)

require.Equal(t, tt.wantSubject, subject)
require.Equal(t, tt.wantIssuer, issuer)
Expand Down

0 comments on commit 256dacc

Please sign in to comment.