From 9c964d2dce96c2eb9b3beab393205a6d73c0a789 Mon Sep 17 00:00:00 2001 From: Renaud Hartert <172256533+renaudhartert-db@users.noreply.github.com> Date: Wed, 19 Jun 2024 14:54:22 +0200 Subject: [PATCH] Noop swap of got/want to match go practices --- config/auth_azure_github_oidc_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/auth_azure_github_oidc_test.go b/config/auth_azure_github_oidc_test.go index 0b59feb9e..5ef1d4817 100644 --- a/config/auth_azure_github_oidc_test.go +++ b/config/auth_azure_github_oidc_test.go @@ -325,6 +325,6 @@ func TestAzureGithubOIDCCredentials_Name(t *testing.T) { want := "github-oidc-azure" if got := c.Name(); got != want { - t.Errorf("Name(): want %s, got %s", want, got) + t.Errorf("Name(): got %s, want %s", got, want) } }