diff --git a/nomad/vault_test.go b/nomad/vault_test.go index 3f94d79446e..07ee66a6d43 100644 --- a/nomad/vault_test.go +++ b/nomad/vault_test.go @@ -1015,6 +1015,7 @@ func TestVaultClient_LookupToken_RateLimit(t *testing.T) { // Spin up many requests. These should block ctx, cancel := context.WithCancel(context.Background()) + defer cancel() cancels := 0 numRequests := 20 @@ -1028,7 +1029,7 @@ func TestVaultClient_LookupToken_RateLimit(t *testing.T) { cancels += 1 return } - t.Fatalf("self lookup failed: %v", err) + t.Errorf("self lookup failed: %v", err) return }