Merge pull request #111420 from muyangren2/azure_auth_assert

Fix test order  staging/src/k8s.io/legacy-cloud-providers/azure/auth/azure_auth_test.go
This commit is contained in:
Kubernetes Prow Robot 2022-09-14 11:09:01 -07:00 committed by GitHub
commit b077a9ad87
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -154,7 +154,7 @@ func TestParseAzureEnvironment(t *testing.T) {
for _, c := range cases {
env, err := ParseAzureEnvironment(c.cloudName, c.resourceManagerEndpoint, c.identitySystem)
assert.NoError(t, err)
assert.Equal(t, env, c.expected)
assert.Equal(t, c.expected, env)
}
}