Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Test] Service Accounts - Remove colon from invalid token name genera…
…tor (#71099) The colon character is interpreted as the separate between token name and token secret. So if a token name contains a colon, it is in theory invalid. But the parser takes only the part before the colon as the token name and thus consider it as a valid token name. Subsequent authentication will still fail. But for tests, this generates a different exception and fails the expectation. This PR removes the colon char from being used to generate invalid token names for simplicity.
- Loading branch information