Skip to content

Commit

Permalink
fix: update namespace labels test to use new JWT creation function
Browse files Browse the repository at this point in the history
Relates-to: hashicorp#155
  • Loading branch information
f4z3r committed Sep 4, 2023
1 parent 00d619c commit 40730ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integrationtest/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ func TestSuccessWithNamespaceLabels(t *testing.T) {

_, err := client.Logical().Write("auth/kubernetes/login", map[string]interface{}{
"role": "test-role",
"jwt": os.Getenv("KUBERNETES_JWT"),
"jwt": createToken(t, "vault", nil),
})
if err != nil {
t.Fatalf("Expected successful login but got: %v", err)
Expand Down

0 comments on commit 40730ab

Please sign in to comment.